Re: [PATCH net-next] net: caif: Use netif_rx_any_context().

2021-02-15 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net.git (refs/heads/master): On Sat, 13 Feb 2021 18:05:14 +0100 you wrote: > The usage of in_interrupt() in non-core code is phased out. Ideally the > information of the calling context should be passed by the callers or the > functions be split as appropri

[PATCH net-next] net: caif: Use netif_rx_any_context().

2021-02-13 Thread Sebastian Andrzej Siewior
The usage of in_interrupt() in non-core code is phased out. Ideally the information of the calling context should be passed by the callers or the functions be split as appropriate. The attempt to consolidate the code by passing an arguemnt or by distangling it failed due lack of knowledge about th