OSDN Git Service

net/mlx5e: Fix lost changes during code movements
authorTariq Toukan <tariqt@nvidia.com>
Wed, 14 Apr 2021 17:43:33 +0000 (20:43 +0300)
committerSaeed Mahameed <saeedm@nvidia.com>
Tue, 20 Apr 2021 03:17:03 +0000 (20:17 -0700)
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] commit e4484d9df500 ("net/mlx5e: Enable striding RQ for Connect-X IPsec capable devices")
[2] commit b3a131c2a160 ("net/mlx5e: Move params logic into its dedicated file")

Fixes: b3a131c2a160 ("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>
drivers/net/ethernet/mellanox/mlx5/core/en/params.c

index f6ba568..69f1f41 100644 (file)
@@ -6,6 +6,7 @@
 #include "en/port.h"
 #include "en_accel/en_accel.h"
 #include "accel/ipsec.h"
+#include "fpga/ipsec.h"
 
 static bool mlx5e_rx_is_xdp(struct mlx5e_params *params,
                            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))
                return false;
 
-       if (MLX5_IPSEC_DEV(mdev))
+       if (mlx5_fpga_is_ipsec_device(mdev))
                return false;
 
        if (params->xdp_prog) {
@@ -364,7 +365,7 @@ static void mlx5e_build_rq_frags_info(struct mlx5_core_dev *mdev,
        u32 buf_size = 0;
        int i;
 
-       if (MLX5_IPSEC_DEV(mdev))
+       if (mlx5_fpga_is_ipsec_device(mdev))
                byte_count += MLX5E_METADATA_ETHER_LEN;
 
        if (mlx5e_rx_is_linear_skb(params, xsk)) {