]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
net/mlx5e: Pass only eseg to IPSEC offload
authorMaxim Mikityanskiy <maximmi@mellanox.com>
Fri, 6 Dec 2019 14:14:57 +0000 (16:14 +0200)
committerSaeed Mahameed <saeedm@mellanox.com>
Sat, 9 May 2020 08:05:39 +0000 (01:05 -0700)
IPSEC offload needs to modify the eseg of the WQE that is being filled,
but it receives a pointer to the whole WQE. To make the contract
stricter, pass only the pointer to the eseg of that WQE. This commit is
preparation for the following refactoring of offloads in the TX path and
for the MPWQE support.

Signed-off-by: Maxim Mikityanskiy <maximmi@mellanox.com>
Reviewed-by: Tariq Toukan <tariqt@mellanox.com>
Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
drivers/net/ethernet/mellanox/mlx5/core/en_accel/en_accel.h
drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec_rxtx.c
drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec_rxtx.h

index 6249998444c01ddf76565ecfb923837535229155..c658c8556863950be027fb0ca02a0bb594771f06 100644 (file)
@@ -117,7 +117,7 @@ static inline bool mlx5e_accel_handle_tx(struct sk_buff *skb,
 
 #ifdef CONFIG_MLX5_EN_IPSEC
        if (test_bit(MLX5E_SQ_STATE_IPSEC, &sq->state)) {
-               if (unlikely(!mlx5e_ipsec_handle_tx_skb(dev, *wqe, skb)))
+               if (unlikely(!mlx5e_ipsec_handle_tx_skb(dev, &(*wqe)->eth, skb)))
                        return false;
        }
 #endif
index f60eb6a4b57cb1a1e0c809716881f7a23cf3bd15..0e1ac3e68c72b5b0700b9761a1d1c7f9946f5157 100644 (file)
@@ -234,7 +234,7 @@ static void mlx5e_ipsec_set_metadata(struct sk_buff *skb,
 }
 
 bool mlx5e_ipsec_handle_tx_skb(struct net_device *netdev,
-                              struct mlx5e_tx_wqe *wqe,
+                              struct mlx5_wqe_eth_seg *eseg,
                               struct sk_buff *skb)
 {
        struct mlx5e_priv *priv = netdev_priv(netdev);
@@ -276,7 +276,7 @@ bool mlx5e_ipsec_handle_tx_skb(struct net_device *netdev,
                atomic64_inc(&priv->ipsec->sw_stats.ipsec_tx_drop_metadata);
                goto drop;
        }
-       mlx5e_ipsec_set_swp(skb, &wqe->eth, x->props.mode, xo);
+       mlx5e_ipsec_set_swp(skb, eseg, x->props.mode, xo);
        sa_entry = (struct mlx5e_ipsec_sa_entry *)x->xso.offload_handle;
        sa_entry->set_iv_op(skb, x, xo);
        mlx5e_ipsec_set_metadata(skb, mdata, xo);
index 64e948cc3dc5c1acafa603328618fad06ab54052..bd6f32aee8d6395cdf5df47ef8abe801226826de 100644 (file)
@@ -53,7 +53,7 @@ void mlx5e_ipsec_set_iv_esn(struct sk_buff *skb, struct xfrm_state *x,
 void mlx5e_ipsec_set_iv(struct sk_buff *skb, struct xfrm_state *x,
                        struct xfrm_offload *xo);
 bool mlx5e_ipsec_handle_tx_skb(struct net_device *netdev,
-                              struct mlx5e_tx_wqe *wqe,
+                              struct mlx5_wqe_eth_seg *eseg,
                               struct sk_buff *skb);
 
 #endif /* CONFIG_MLX5_EN_IPSEC */