Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e245cb71 authored by Jay Vosburgh's avatar Jay Vosburgh Committed by Jeff Garzik
Browse files

bonding: only receive ARPs for us



	The ARP validation code only needs ARPs for the bonding device.

Signed-off-by: default avatarJay Vosburgh <fubar@us.ibm.com>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent c4f283b1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3427,7 +3427,7 @@ void bond_register_arp(struct bonding *bond)
		return;

	pt->type = htons(ETH_P_ARP);
	pt->dev = NULL; /*bond->dev;XXX*/
	pt->dev = bond->dev;
	pt->func = bond_arp_rcv;
	dev_add_pack(pt);
}