diff options
author | Nikolay Aleksandrov <nikolay@redhat.com> | 2014-09-11 22:49:26 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-09-13 22:29:07 +0200 |
commit | 4bab16d7c97498e91564231b922d49f52efaf7d4 (patch) | |
tree | 78d3ab74fa02b046b773bf7e2b547a7079e121a4 /drivers/net/bonding/bond_alb.h | |
parent | bonding: convert curr_slave_lock to a spinlock and rename it (diff) | |
download | linux-4bab16d7c97498e91564231b922d49f52efaf7d4.tar.xz linux-4bab16d7c97498e91564231b922d49f52efaf7d4.zip |
bonding: alb: convert to bond->mode_lock
The ALB/TLB specific spinlocks are no longer necessary as we now have
bond->mode_lock for this purpose, so convert them and remove them from
struct alb_bond_info.
Also remove the unneeded lock/unlock functions and use spin_lock/unlock
directly.
Suggested-by: Jay Vosburgh <jay.vosburgh@canonical.com>
Signed-off-by: Nikolay Aleksandrov <nikolay@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bonding/bond_alb.h')
-rw-r--r-- | drivers/net/bonding/bond_alb.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/net/bonding/bond_alb.h b/drivers/net/bonding/bond_alb.h index aaeac61d03cf..3c6a7ff974d7 100644 --- a/drivers/net/bonding/bond_alb.h +++ b/drivers/net/bonding/bond_alb.h @@ -147,7 +147,6 @@ struct tlb_up_slave { struct alb_bond_info { struct tlb_client_info *tx_hashtbl; /* Dynamically allocated */ - spinlock_t tx_hashtbl_lock; u32 unbalanced_load; int tx_rebalance_counter; int lp_counter; @@ -156,7 +155,6 @@ struct alb_bond_info { /* -------- rlb parameters -------- */ int rlb_enabled; struct rlb_client_info *rx_hashtbl; /* Receive hash table */ - spinlock_t rx_hashtbl_lock; u32 rx_hashtbl_used_head; u8 rx_ntt; /* flag - need to transmit * to all rx clients |