batman-adv: Fix duplicated OGMs on NETDEV_UP 474/head
authorSven Eckelmann <sven@narfation.org>
Sun, 2 Jun 2019 09:39:24 +0000 (11:39 +0200)
committerSven Eckelmann <sven@narfation.org>
Sun, 2 Jun 2019 12:07:39 +0000 (14:07 +0200)
commitc07326c3bac082e3c76d071c43a501d5541adc16
tree24888882b572d8832a491a06813aee8eb097c0ba
parent145ba7f46abd984536f94410dde305da9ef8921f
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/0032-batman-adv-Fix-duplicated-OGMs-on-NETDEV_UP.patch [new file with mode: 0644]