goto free_flow;
 
        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);
                u32 swid;
 
 
        struct mlx5e_tls_sw_stats sw_stats;
 };
 
-struct mlx5e_tls_offload_context {
+struct mlx5e_tls_offload_context_tx {
        struct tls_offload_context_tx base;
        u32 expected_seq;
        __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)
 {
-       BUILD_BUG_ON(sizeof(struct mlx5e_tls_offload_context) >
+       BUILD_BUG_ON(sizeof(struct mlx5e_tls_offload_context_tx) >
                     TLS_OFFLOAD_CONTEXT_SIZE_TX);
        return container_of(tls_offload_ctx_tx(tls_ctx),
-                           struct mlx5e_tls_offload_context,
+                           struct mlx5e_tls_offload_context_tx,
                            base);
 }
 
 
        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)
 {
        int remaining, i = 0, ret = -EINVAL;
 }
 
 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_tx_wqe **wqe,
                     u16 *pi,
                                        u16 *pi)
 {
        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;
        u32 expected_seq;
        int datalen;