diff options
author | Eric Dumazet <eric.dumazet@gmail.com> | 2009-09-01 02:31:18 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-09-01 20:40:26 -0400 |
commit | 885a136c52a8871175477baf3903e1c38751b35a (patch) | |
tree | 7df36a899371078e1600531d4c6e3870e188cd60 /drivers/net/bonding/bonding.h | |
parent | ac06713d55d450cbc9ef871b1b238409238f0fe0 (diff) |
bonding: use compare_ether_addr_64bits() in ALB
We can speedup ether addresses compares using compare_ether_addr_64bits()
instead of memcmp(). We make sure all operands are at least 8 bytes long and
16bits aligned (or better, long word aligned if possible)
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Reviewed-by: Jiri Pirko <jpirko@redhat.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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/bonding/bonding.h b/drivers/net/bonding/bonding.h index 6290a502742e..68247714466f 100644 --- a/drivers/net/bonding/bonding.h +++ b/drivers/net/bonding/bonding.h | |||
@@ -163,9 +163,9 @@ struct slave { | |||
163 | u32 original_flags; | 163 | u32 original_flags; |
164 | u32 original_mtu; | 164 | u32 original_mtu; |
165 | u32 link_failure_count; | 165 | u32 link_failure_count; |
166 | u8 perm_hwaddr[ETH_ALEN]; | ||
166 | u16 speed; | 167 | u16 speed; |
167 | u8 duplex; | 168 | u8 duplex; |
168 | u8 perm_hwaddr[ETH_ALEN]; | ||
169 | struct ad_slave_info ad_info; /* HUGE - better to dynamically alloc */ | 169 | struct ad_slave_info ad_info; /* HUGE - better to dynamically alloc */ |
170 | struct tlb_slave_info tlb_info; | 170 | struct tlb_slave_info tlb_info; |
171 | }; | 171 | }; |