projects
/
platform
/
adaptation
/
renesas_rcar
/
renesas_kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
82cc4f5
)
bonding: Fix slave selection bug.
author
Hillf Danton
<dhillf@gmail.com>
Fri, 10 Dec 2010 18:54:11 +0000
(18:54 +0000)
committer
David S. Miller
<davem@davemloft.net>
Thu, 16 Dec 2010 20:24:02 +0000
(12:24 -0800)
The returned slave is incorrect, if the net device under check is not
charged yet by the master.
Signed-off-by: Hillf Danton <dhillf@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/bonding/bonding.h
patch
|
blob
|
history
diff --git
a/drivers/net/bonding/bonding.h
b/drivers/net/bonding/bonding.h
index
c2f0813
..
4feeb2d
100644
(file)
--- a/
drivers/net/bonding/bonding.h
+++ b/
drivers/net/bonding/bonding.h
@@
-269,11
+269,11
@@
static inline struct slave *bond_get_slave_by_dev(struct bonding *bond, struct n
bond_for_each_slave(bond, slave, i) {
if (slave->dev == slave_dev) {
-
break
;
+
return slave
;
}
}
- return
slave
;
+ return
0
;
}
static inline struct bonding *bond_get_bond_by_slave(struct slave *slave)