diff options
author | dingtianhong <dingtianhong@huawei.com> | 2014-05-07 22:10:20 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-05-08 23:41:12 -0400 |
commit | bedabf903d9b1a056ba58dac1c89760d5adca2a3 (patch) | |
tree | 8c74f4f273fedae4b5f75563c3c0fb1bde65d53c /drivers/net/bonding/bonding.h | |
parent | 31924325f59ba94deb255e8ae314eb103141af40 (diff) | |
download | op-kernel-dev-bedabf903d9b1a056ba58dac1c89760d5adca2a3.zip op-kernel-dev-bedabf903d9b1a056ba58dac1c89760d5adca2a3.tar.gz |
bonding: simplify the slave_do_arp_validate_only()
The argument slave is not used for slave_do_arp_validate_only(), so no need
to keep it, make the function more simple.
Cc: Jay Vosburgh <j.vosburgh@gmail.com>
Cc: Veaceslav Falico <vfalico@gmail.com>
Cc: Andy Gospodarek <andy@greyhouse.net>
Signed-off-by: Ding Tianhong <dingtianhong@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bonding/bonding.h')
-rw-r--r-- | drivers/net/bonding/bonding.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/bonding/bonding.h b/drivers/net/bonding/bonding.h index 1eab911..1befc25 100644 --- a/drivers/net/bonding/bonding.h +++ b/drivers/net/bonding/bonding.h @@ -396,8 +396,7 @@ static inline int slave_do_arp_validate(struct bonding *bond, return bond->params.arp_validate & (1 << bond_slave_state(slave)); } -static inline int slave_do_arp_validate_only(struct bonding *bond, - struct slave *slave) +static inline int slave_do_arp_validate_only(struct bonding *bond) { return bond->params.arp_validate & BOND_ARP_FILTER; } |