aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorAmerigo Wang <amwang@redhat.com>2011-02-27 23:34:28 +0000
committerDavid S. Miller <davem@davemloft.net>2011-02-28 13:21:28 -0800
commite364a3416d81c7717dd642dc9b3ab132b7885f66 (patch)
tree4ca2bccdb3db1d08378da976f7e53e3ccfa426c8 /drivers
parentenic: Flush driver cache of registered addr lists during port profile disassociate (diff)
downloadlinux-dev-e364a3416d81c7717dd642dc9b3ab132b7885f66.tar.xz
linux-dev-e364a3416d81c7717dd642dc9b3ab132b7885f66.zip
bonding: use the correct size for _simple_hash()
Clearly it should be the size of ->ip_dst here. Although this is harmless, but it still reads odd. Signed-off-by: WANG Cong <amwang@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/bonding/bond_alb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/bonding/bond_alb.c b/drivers/net/bonding/bond_alb.c
index 5c6fba802f2b..9bc5de3e04a8 100644
--- a/drivers/net/bonding/bond_alb.c
+++ b/drivers/net/bonding/bond_alb.c
@@ -604,7 +604,7 @@ static struct slave *rlb_choose_channel(struct sk_buff *skb, struct bonding *bon
_lock_rx_hashtbl(bond);
- hash_index = _simple_hash((u8 *)&arp->ip_dst, sizeof(arp->ip_src));
+ hash_index = _simple_hash((u8 *)&arp->ip_dst, sizeof(arp->ip_dst));
client_info = &(bond_info->rx_hashtbl[hash_index]);
if (client_info->assigned) {