]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
bonding: simplify the slave_do_arp_validate_only()
authordingtianhong <dingtianhong@huawei.com>
Wed, 7 May 2014 14:10:20 +0000 (22:10 +0800)
committerDavid S. Miller <davem@davemloft.net>
Fri, 9 May 2014 03:41:12 +0000 (23:41 -0400)
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>
drivers/net/bonding/bond_main.c
drivers/net/bonding/bonding.h

index 9d08e007d85309a86be139e8e9b39cc36cfcd7b0..a1741cb23100d1c62f1e202fed6227b17aa7adbe 100644 (file)
@@ -2291,8 +2291,8 @@ int bond_arp_rcv(const struct sk_buff *skb, struct bonding *bond,
        int alen, is_arp = skb->protocol == __cpu_to_be16(ETH_P_ARP);
 
        if (!slave_do_arp_validate(bond, slave)) {
-               if ((slave_do_arp_validate_only(bond, slave) && is_arp) ||
-                   !slave_do_arp_validate_only(bond, slave))
+               if ((slave_do_arp_validate_only(bond) && is_arp) ||
+                   !slave_do_arp_validate_only(bond))
                        slave->last_rx = jiffies;
                return RX_HANDLER_ANOTHER;
        } else if (!is_arp) {
index 1eab9115517d2cf1c4c4c6a6ac8507a9aa9fc1e3..1befc256f31cc89b1f037dfc6b6b6536593b0720 100644 (file)
@@ -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;
 }