net/mlx5e: Use test bit in en accel xmit flow
Replace (mask & bit) check with test_bit. Signed-off-by: Gal Pressman <galp@mellanox.com> Signed-off-by: Tariq Toukan <tariqt@mellanox.com> Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
This commit is contained in:
parent
af5a6c9365
commit
bfbe205753
@ -49,7 +49,7 @@ static inline struct sk_buff *mlx5e_accel_handle_tx(struct sk_buff *skb,
|
|||||||
u16 *pi)
|
u16 *pi)
|
||||||
{
|
{
|
||||||
#ifdef CONFIG_MLX5_EN_TLS
|
#ifdef CONFIG_MLX5_EN_TLS
|
||||||
if (sq->state & BIT(MLX5E_SQ_STATE_TLS)) {
|
if (test_bit(MLX5E_SQ_STATE_TLS, &sq->state)) {
|
||||||
skb = mlx5e_tls_handle_tx_skb(dev, sq, skb, wqe, pi);
|
skb = mlx5e_tls_handle_tx_skb(dev, sq, skb, wqe, pi);
|
||||||
if (unlikely(!skb))
|
if (unlikely(!skb))
|
||||||
return NULL;
|
return NULL;
|
||||||
@ -57,7 +57,7 @@ static inline struct sk_buff *mlx5e_accel_handle_tx(struct sk_buff *skb,
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_MLX5_EN_IPSEC
|
#ifdef CONFIG_MLX5_EN_IPSEC
|
||||||
if (sq->state & BIT(MLX5E_SQ_STATE_IPSEC)) {
|
if (test_bit(MLX5E_SQ_STATE_IPSEC, &sq->state)) {
|
||||||
skb = mlx5e_ipsec_handle_tx_skb(dev, *wqe, skb);
|
skb = mlx5e_ipsec_handle_tx_skb(dev, *wqe, skb);
|
||||||
if (unlikely(!skb))
|
if (unlikely(!skb))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
Loading…
Reference in New Issue
Block a user