[PATCH net-next 00/10] net: Convert user to netif_rx(), part 3.

2022-03-06 Thread Sebastian Andrzej Siewior
This is the third and last batch of converting netif_rx_ni() caller to netif_rx(). The change making this possible is net-next and netif_rx_ni() is a wrapper around netif_rx(). This is a clean up in order to remove netif_rx_ni(). The micrel phy driver is patched twice within this series: the

[PATCH net-next 05/10] batman-adv: Use netif_rx().

2022-03-06 Thread Sebastian Andrzej Siewior
Since commit baebdf48c3600 ("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: Antonio Quartulli Cc: Marek Lindner Cc: Simon Wunderlich Cc: Sven Eckelmann

Re: [PATCH net-next 05/10] batman-adv: Use netif_rx().

2022-03-06 Thread Sven Eckelmann
On Sunday, 6 March 2022 22:57:48 CET Sebastian Andrzej Siewior wrote: > Since commit >baebdf48c3600 ("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