Re: [PATCH] batman-adv: Use netif_rx_any_context().

2021-03-10 Thread Sebastian Andrzej Siewior
On 2021-02-13 18:10:29 [+0100], Sven Eckelmann wrote: > Thanks, queued up Thank you for that but I don't see it in -next as of today. Did something go wrong? > Kind regards, > Sven Sebastian

[PATCH] batman-adv: Use netif_rx_any_context().

2021-02-13 Thread Sebastian Andrzej Siewior
this driver and because the call chains are hard to follow. As a stop gap use netif_rx_any_context() which invokes the correct code path depending on context and confines the in_interrupt() usage to core code. Signed-off-by: Sebastian Andrzej Siewior --- net/batman-adv/bridge_loop_avoidance.c | 5

[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
Eckelmann Cc: b.a.t.m.a.n@lists.open-mesh.org Signed-off-by: Sebastian Andrzej Siewior --- net/batman-adv/bridge_loop_avoidance.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/batman-adv/bridge_loop_avoidance.c b/net/batman-adv/bridge_loop_avoidance.c index 337

[PATCH 5.15] batman-adv: Use netif_rx_any_context() any.

2022-07-24 Thread Sebastian Andrzej Siewior
ad context as | well as in interrupt context. This commit (baebdf48c3600) has not been backported to the 5.15 stable series and therefore, the commit which builds upon it, must not be backported either. Revert the backport and use netif_rx_any_context() again. Signed-off-by: Sebastian Andrzej Siewior