Skip to content

Commit

Permalink
wireless: Marvell: Use netif_rx().
Browse files Browse the repository at this point in the history
Since commit
   baebdf4 ("net: dev: Makes sure netif_rx() can be invoked in any context.")

the function netif_rx() can be used in preemptible/thread context as
well as in interrupt context.

Use netif_rx().

Cc: Amitkumar Karwar <amitkarwar@gmail.com>
Cc: Ganapathi Bhat <ganapathi017@gmail.com>
Cc: Kalle Valo <kvalo@kernel.org>
Cc: Sharvari Harisangam <sharvari.harisangam@nxp.com>
Cc: Xinming Hu <huxinming820@gmail.com>
Cc: libertas-dev@lists.infradead.org
Cc: linux-wireless@vger.kernel.org
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Sebastian Andrzej Siewior authored and davem330 committed Mar 6, 2022
1 parent b381728 commit afb6d39
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions drivers/net/wireless/marvell/libertas/rx.c
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ int lbs_process_rxed_packet(struct lbs_private *priv, struct sk_buff *skb)
dev->stats.rx_packets++;

skb->protocol = eth_type_trans(skb, dev);
netif_rx_any_context(skb);
netif_rx(skb);

ret = 0;
done:
Expand Down Expand Up @@ -262,7 +262,7 @@ static int process_rxed_802_11_packet(struct lbs_private *priv,
dev->stats.rx_packets++;

skb->protocol = eth_type_trans(skb, priv->dev);
netif_rx_any_context(skb);
netif_rx(skb);

ret = 0;

Expand Down
2 changes: 1 addition & 1 deletion drivers/net/wireless/marvell/mwifiex/uap_txrx.c
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ int mwifiex_uap_recv_packet(struct mwifiex_private *priv,
skb->truesize += (skb->len - MWIFIEX_RX_DATA_BUF_SIZE);

/* Forward multicast/broadcast packet to upper layer*/
netif_rx_any_context(skb);
netif_rx(skb);
return 0;
}

Expand Down
2 changes: 1 addition & 1 deletion drivers/net/wireless/marvell/mwifiex/util.c
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ int mwifiex_recv_packet(struct mwifiex_private *priv, struct sk_buff *skb)
(skb->truesize > MWIFIEX_RX_DATA_BUF_SIZE))
skb->truesize += (skb->len - MWIFIEX_RX_DATA_BUF_SIZE);

netif_rx_any_context(skb);
netif_rx(skb);
return 0;
}

Expand Down

0 comments on commit afb6d39

Please sign in to comment.