ChangeSet 1.2199.8.28, 2005/03/22 18:44:45-08:00, [EMAIL PROTECTED]

        [BONDING]: Use NETIF_F_LLTX in bonding device
        
        Lock contention on the bonding device's xmit_lock can 
        become a bottleneck when 3 or more gige links are aggregated. 
        And it looks like it's unnecessary too, so use the 
        NETIF_F_LLTX flag to avoid grabbing this lock. 
        
        Signed-off-by: <[EMAIL PROTECTED]>
        Signed-off-by: David S. Miller <[EMAIL PROTECTED]>



 bond_main.c |    4 ++++
 1 files changed, 4 insertions(+)


diff -Nru a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c
--- a/drivers/net/bonding/bond_main.c   2005-03-26 17:16:10 -08:00
+++ b/drivers/net/bonding/bond_main.c   2005-03-26 17:16:10 -08:00
@@ -4297,6 +4297,10 @@
         */
        bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
 
+       /* don't acquire bond device's xmit_lock when 
+        * transmitting */
+       bond_dev->features |= NETIF_F_LLTX;
+
        /* By default, we declare the bond to be fully
         * VLAN hardware accelerated capable. Special
         * care is taken in the various xmit functions
-
To unsubscribe from this list: send the line "unsubscribe bk-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to