]> git.baikalelectronics.ru Git - kernel.git/commit
batman-adv: Fix DAT candidate selection on little endian systems
authorSven Eckelmann <sven@narfation.org>
Thu, 28 Nov 2019 11:25:45 +0000 (12:25 +0100)
committerSimon Wunderlich <sw@simonwunderlich.de>
Thu, 28 Nov 2019 11:48:59 +0000 (12:48 +0100)
commitea5ca1c47dc8497864c0376ce37df9d6cc87d74e
tree3765c626d728ed063168ad7153a29a96f993fe13
parentf5045bf4c7ac9f5ad26d0bff061e5e3d9e58c752
batman-adv: Fix DAT candidate selection on little endian systems

The distributed arp table is using a DHT to store and retrieve MAC address
information for an IP address. This is done using unicast messages to
selected peers. The potential peers are looked up using the IP address and
the VID.

While the IP address is always stored in big endian byte order, this is not
the case of the VID. It can (depending on the host system) either be big
endian or little endian. The host must therefore always convert it to big
endian to ensure that all devices calculate the same peers for the same
lookup data.

Fixes: 3454fb64112e ("batman-adv: make the Distributed ARP Table vlan aware")
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de>
net/batman-adv/distributed-arp-table.c