net/mlx5e: TLS, refactor variable names

For symmetry, we rename mlx5e_tls_offload_context to
mlx5e_tls_offload_context_tx before we add mlx5e_tls_offload_context_rx.

Signed-off-by: Boris Pismenny <borisp@mellanox.com>
Reviewed-by: Aviad Yehezkel <aviadye@mellanox.com>
Reviewed-by: Tariq Toukan <tariqt@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Boris Pismenny 2018-07-13 14:33:45 +03:00 committed by David S. Miller
parent 4718799817
commit 0aadb2fc09
3 changed files with 8 additions and 8 deletions

View file

@ -123,7 +123,7 @@ static int mlx5e_tls_add(struct net_device *netdev, struct sock *sk,
goto free_flow; goto free_flow;
if (direction == TLS_OFFLOAD_CTX_DIR_TX) { if (direction == TLS_OFFLOAD_CTX_DIR_TX) {
struct mlx5e_tls_offload_context *tx_ctx = struct mlx5e_tls_offload_context_tx *tx_ctx =
mlx5e_get_tls_tx_context(tls_ctx); mlx5e_get_tls_tx_context(tls_ctx);
u32 swid; u32 swid;

View file

@ -49,19 +49,19 @@ struct mlx5e_tls {
struct mlx5e_tls_sw_stats sw_stats; struct mlx5e_tls_sw_stats sw_stats;
}; };
struct mlx5e_tls_offload_context { struct mlx5e_tls_offload_context_tx {
struct tls_offload_context_tx base; struct tls_offload_context_tx base;
u32 expected_seq; u32 expected_seq;
__be32 swid; __be32 swid;
}; };
static inline struct mlx5e_tls_offload_context * static inline struct mlx5e_tls_offload_context_tx *
mlx5e_get_tls_tx_context(struct tls_context *tls_ctx) mlx5e_get_tls_tx_context(struct tls_context *tls_ctx)
{ {
BUILD_BUG_ON(sizeof(struct mlx5e_tls_offload_context) > BUILD_BUG_ON(sizeof(struct mlx5e_tls_offload_context_tx) >
TLS_OFFLOAD_CONTEXT_SIZE_TX); TLS_OFFLOAD_CONTEXT_SIZE_TX);
return container_of(tls_offload_ctx_tx(tls_ctx), return container_of(tls_offload_ctx_tx(tls_ctx),
struct mlx5e_tls_offload_context, struct mlx5e_tls_offload_context_tx,
base); base);
} }

View file

@ -73,7 +73,7 @@ static int mlx5e_tls_add_metadata(struct sk_buff *skb, __be32 swid)
return 0; return 0;
} }
static int mlx5e_tls_get_sync_data(struct mlx5e_tls_offload_context *context, static int mlx5e_tls_get_sync_data(struct mlx5e_tls_offload_context_tx *context,
u32 tcp_seq, struct sync_info *info) u32 tcp_seq, struct sync_info *info)
{ {
int remaining, i = 0, ret = -EINVAL; int remaining, i = 0, ret = -EINVAL;
@ -161,7 +161,7 @@ static void mlx5e_tls_complete_sync_skb(struct sk_buff *skb,
} }
static struct sk_buff * static struct sk_buff *
mlx5e_tls_handle_ooo(struct mlx5e_tls_offload_context *context, mlx5e_tls_handle_ooo(struct mlx5e_tls_offload_context_tx *context,
struct mlx5e_txqsq *sq, struct sk_buff *skb, struct mlx5e_txqsq *sq, struct sk_buff *skb,
struct mlx5e_tx_wqe **wqe, struct mlx5e_tx_wqe **wqe,
u16 *pi, u16 *pi,
@ -239,7 +239,7 @@ struct sk_buff *mlx5e_tls_handle_tx_skb(struct net_device *netdev,
u16 *pi) u16 *pi)
{ {
struct mlx5e_priv *priv = netdev_priv(netdev); struct mlx5e_priv *priv = netdev_priv(netdev);
struct mlx5e_tls_offload_context *context; struct mlx5e_tls_offload_context_tx *context;
struct tls_context *tls_ctx; struct tls_context *tls_ctx;
u32 expected_seq; u32 expected_seq;
int datalen; int datalen;