]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
bonding: make alb_send_learning_packets() use upper dev list
authorVeaceslav Falico <vfalico@redhat.com>
Wed, 28 Aug 2013 21:25:14 +0000 (23:25 +0200)
committerDavid S. Miller <davem@davemloft.net>
Thu, 29 Aug 2013 20:19:43 +0000 (16:19 -0400)
Currently, if there are vlans on top of bond, alb_send_learning_packets()
will never send LPs from the bond itself (i.e. untagged), which might leave
untagged clients unupdated.

Also, the 'circular vlan' logic (i.e. update only MAX_LP_BURST vlans at a
time, and save the last vlan for the next update) is really suboptimal - in
case of lots of vlans it will take a lot of time to update every vlan. It
is also never called in any hot path and sends only a few small packets -
thus the optimization by itself is useless.

So remove the whole current_alb_vlan/MAX_LP_BURST logic from
alb_send_learning_packets(). Instead, we'll first send a packet untagged
and then traverse the upper dev list, sending a tagged packet for each vlan
found. Also, remove the MAX_LP_BURST define - we already don't need it.

CC: Jay Vosburgh <fubar@us.ibm.com>
CC: Andy Gospodarek <andy@greyhouse.net>
Signed-off-by: Veaceslav Falico <vfalico@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/bonding/bond_alb.c
drivers/net/bonding/bond_alb.h

index 3ca3c85d6f2492f3d4baa3936d2bb87813d5948e..b6a68b4a1a09f0b53e36a2424943980e91850f4e 100644 (file)
@@ -1013,27 +1013,20 @@ static void alb_send_lp_vid(struct slave *slave, u8 mac_addr[],
 static void alb_send_learning_packets(struct slave *slave, u8 mac_addr[])
 {
        struct bonding *bond = bond_get_bond_by_slave(slave);
-       u16 vlan_id;
-       int i;
-
-       for (i = 0; i < MAX_LP_BURST; i++) {
-               vlan_id = 0;
-
-               if (bond_vlan_used(bond)) {
-                       struct vlan_entry *vlan;
+       struct net_device *upper;
+       struct list_head *iter;
 
-                       vlan = bond_next_vlan(bond,
-                                             bond->alb_info.current_alb_vlan);
-
-                       bond->alb_info.current_alb_vlan = vlan;
-                       if (!vlan)
-                               continue;
-
-                       vlan_id = vlan->vlan_id;
-               }
+       /* send untagged */
+       alb_send_lp_vid(slave, mac_addr, 0);
 
-               alb_send_lp_vid(slave, mac_addr, vlan_id);
+       /* loop through vlans and send one packet for each */
+       rcu_read_lock();
+       netdev_for_each_upper_dev_rcu(bond->dev, upper, iter) {
+               if (upper->priv_flags & IFF_802_1Q_VLAN)
+                       alb_send_lp_vid(slave, mac_addr,
+                                       vlan_dev_vlan_id(upper));
        }
+       rcu_read_unlock();
 }
 
 static int alb_set_slave_mac_addr(struct slave *slave, u8 addr[])
index e7a5b8b37ea3f394a4fbf6f78b47173976da0cd4..e13917222cd47fb6036c13a5f0208f6a3b044e67 100644 (file)
@@ -53,7 +53,6 @@ struct slave;
 
 
 #define TLB_NULL_INDEX         0xffffffff
-#define MAX_LP_BURST           3
 
 /* rlb defs */
 #define RLB_HASH_TABLE_SIZE    256