bonding: add helper function bond_get_targets_ip(targets, ip)
authorVeaceslav Falico <vfalico@redhat.com>
Mon, 24 Jun 2013 09:49:29 +0000 (11:49 +0200)
committerDavid S. Miller <davem@davemloft.net>
Tue, 25 Jun 2013 23:58:37 +0000 (16:58 -0700)
commit87a7b84b588c2ddbde890890855aef18ec34174e
tree5c050d6899bcb84d0366dedefbf690e8fbdc3dc1
parent277e2a84c12e0d4af77d0f0a52623211eb6ab223
bonding: add helper function bond_get_targets_ip(targets, ip)

Add function bond_get_targets_ip(targets, ip) which searches through
targets array of ips (arp_targets) and returns the position of first
match. If ip == 0, returns the first free slot. On failure to find the
ip or free slot, return -1.

Use it to verify if the arp we've received is valid and in sysfs.

v1->v2:
Fix "[2/6] bonding: add helper function bond_get_targets_ip(targets, ip)",
per Nikolay's advice, to verify if source ip != 0.0.0.0, otherwise we might
update 'null' arp_ip_targets' last_rx. Also, address style.

Signed-off-by: Veaceslav Falico <vfalico@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/bonding/bond_main.c
drivers/net/bonding/bond_sysfs.c
drivers/net/bonding/bonding.h