batman-adv: Fix duplicated OGMs on NETDEV_UP 473/head
authorSven Eckelmann <sven@narfation.org>
Sun, 2 Jun 2019 09:36:12 +0000 (11:36 +0200)
committerSven Eckelmann <sven@narfation.org>
Sun, 2 Jun 2019 12:07:55 +0000 (14:07 +0200)
commite100856a6988c35f60487663c3c28d149965eb0b
tree2f10b356bbd39ff9eb403a6a1ae6f0655666d85a
parent0976335f1e4941205172fb75963f72f578f91bc2
batman-adv: Fix duplicated OGMs on NETDEV_UP

The state of slave interfaces are handled differently depending on whether
the interface is up or not. All active interfaces (IFF_UP) will transmit
OGMs. But for B.A.T.M.A.N. IV, also non-active interfaces are scheduling
(low TTL) OGMs on active interfaces. The code which setups and schedules
the OGMs must therefore already be called when the interfaces gets added as
slave interface and the transmit function must then check whether it has to
send out the OGM or not on the specific slave interface.

But v2016.3 moved the setup code from the enable function to the activate
function. The latter is called either when the added slave was already up
when batadv_hardif_enable_interface processed the new interface or when a
NETDEV_UP event was received for this slave interfac. As result, each
NETDEV_UP would schedule a new OGM worker for the interface and thus OGMs
would be send a lot more than expected.

Fixes: 549909f89dd7 ("batman-adv: upgrade package to latest release 2016.3")
Reported-by: Linus Lüssing <linus.luessing@c0d3.blue>
Signed-off-by: Sven Eckelmann <sven@narfation.org>
batman-adv/Makefile
batman-adv/patches/0066-batman-adv-Fix-duplicated-OGMs-on-NETDEV_UP.patch [new file with mode: 0644]