The branch, batadv/net-next-old has been created at 8b00bf1999c65de9c5c20d4a573a1fd615956a73 (commit)
- Shortlog ------------------------------------------------------------ commit 8b00bf1999c65de9c5c20d4a573a1fd615956a73 Author: Sebastian Andrzej Siewior bigeasy@linutronix.de Date: Sat Feb 13 18:02:04 2021 +0100
batman-adv: Use netif_rx_any_context().
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 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 bigeasy@linutronix.de Signed-off-by: Sven Eckelmann sven@narfation.org Signed-off-by: Simon Wunderlich sw@simonwunderlich.de
commit fc8377df3a05ee25f8f00cb9baa4e5b25d790bd7 Author: Simon Wunderlich sw@simonwunderlich.de Date: Sat Feb 13 18:07:30 2021 +0100
batman-adv: Start new development cycle
This version will contain all the (major or even only minor) changes for Linux 5.13.
The version number isn't a semantic version number with major and minor information. It is just encoding the year of the expected publishing as Linux -rc1 and the number of published versions this year (starting at 0).
Signed-off-by: Simon Wunderlich sw@simonwunderlich.de
-----------------------------------------------------------------------