mirror of
https://github.com/torvalds/linux.git
synced 2026-06-08 14:42:37 +02:00
IPv4: Send gratuitous ARP for secondary IP addresses also
[ Upstream commit b76d0789c9 ]
If a device event generates gratuitous ARP messages, only primary
address is used for sending. This patch iterates through the whole
list. Tested with 2 IP addresses configuration on bonding interface.
Signed-off-by: Zoltan Kiss <schaman@sch.bme.hu>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
956c35400b
commit
711ae7c7a8
|
|
@ -1134,15 +1134,15 @@ static void inetdev_send_gratuitous_arp(struct net_device *dev,
|
|||
struct in_device *in_dev)
|
||||
|
||||
{
|
||||
struct in_ifaddr *ifa = in_dev->ifa_list;
|
||||
struct in_ifaddr *ifa;
|
||||
|
||||
if (!ifa)
|
||||
return;
|
||||
|
||||
arp_send(ARPOP_REQUEST, ETH_P_ARP,
|
||||
ifa->ifa_local, dev,
|
||||
ifa->ifa_local, NULL,
|
||||
dev->dev_addr, NULL);
|
||||
for (ifa = in_dev->ifa_list; ifa;
|
||||
ifa = ifa->ifa_next) {
|
||||
arp_send(ARPOP_REQUEST, ETH_P_ARP,
|
||||
ifa->ifa_local, dev,
|
||||
ifa->ifa_local, NULL,
|
||||
dev->dev_addr, NULL);
|
||||
}
|
||||
}
|
||||
|
||||
/* Called only under RTNL semaphore */
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user