net/mlx5e: Fix lost changes during code movements
The changes done in commit [1] were missed by the code movements done in [2], as they were developed in ~parallel. Here we re-apply them. [1] commite4484d9df5
("net/mlx5e: Enable striding RQ for Connect-X IPsec capable devices") [2] commitb3a131c2a1
("net/mlx5e: Move params logic into its dedicated file") Fixes:b3a131c2a1
("net/mlx5e: Move params logic into its dedicated file") Signed-off-by: Tariq Toukan <tariqt@nvidia.com> Reviewed-by: Aya Levin <ayal@nvidia.com> Signed-off-by: Saeed Mahameed <saeedm@nvidia.com>
This commit is contained in:
parent
e9377a911d
commit
d408c01cae
|
@ -6,6 +6,7 @@
|
||||||
#include "en/port.h"
|
#include "en/port.h"
|
||||||
#include "en_accel/en_accel.h"
|
#include "en_accel/en_accel.h"
|
||||||
#include "accel/ipsec.h"
|
#include "accel/ipsec.h"
|
||||||
|
#include "fpga/ipsec.h"
|
||||||
|
|
||||||
static bool mlx5e_rx_is_xdp(struct mlx5e_params *params,
|
static bool mlx5e_rx_is_xdp(struct mlx5e_params *params,
|
||||||
struct mlx5e_xsk_param *xsk)
|
struct mlx5e_xsk_param *xsk)
|
||||||
|
@ -282,7 +283,7 @@ bool mlx5e_striding_rq_possible(struct mlx5_core_dev *mdev,
|
||||||
if (!mlx5e_check_fragmented_striding_rq_cap(mdev))
|
if (!mlx5e_check_fragmented_striding_rq_cap(mdev))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (MLX5_IPSEC_DEV(mdev))
|
if (mlx5_fpga_is_ipsec_device(mdev))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (params->xdp_prog) {
|
if (params->xdp_prog) {
|
||||||
|
@ -364,7 +365,7 @@ static void mlx5e_build_rq_frags_info(struct mlx5_core_dev *mdev,
|
||||||
u32 buf_size = 0;
|
u32 buf_size = 0;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
if (MLX5_IPSEC_DEV(mdev))
|
if (mlx5_fpga_is_ipsec_device(mdev))
|
||||||
byte_count += MLX5E_METADATA_ETHER_LEN;
|
byte_count += MLX5E_METADATA_ETHER_LEN;
|
||||||
|
|
||||||
if (mlx5e_rx_is_linear_skb(params, xsk)) {
|
if (mlx5e_rx_is_linear_skb(params, xsk)) {
|
||||||
|
|
Loading…
Reference in New Issue