提交 344f3297 编写于 作者: V Veaceslav Falico 提交者: David S. Miller

bonding: use neighbours for bond_next_slave()

Use the new function __bond_next_slave().

CC: Jay Vosburgh <fubar@us.ibm.com>
CC: Andy Gospodarek <andy@greyhouse.net>
Signed-off-by: NVeaceslav Falico <vfalico@redhat.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 18e1e9bc
...@@ -76,8 +76,6 @@ ...@@ -76,8 +76,6 @@
#define bond_has_slaves(bond) !list_empty(bond_slave_list(bond)) #define bond_has_slaves(bond) !list_empty(bond_slave_list(bond))
#define bond_to_slave(ptr) list_entry(ptr, struct slave, list)
/* IMPORTANT: bond_first/last_slave can return NULL in case of an empty list */ /* IMPORTANT: bond_first/last_slave can return NULL in case of an empty list */
#define bond_first_slave(bond) \ #define bond_first_slave(bond) \
(bond_has_slaves(bond) ? \ (bond_has_slaves(bond) ? \
...@@ -92,9 +90,7 @@ ...@@ -92,9 +90,7 @@
#define bond_is_last_slave(bond, pos) (pos == bond_last_slave(bond)) #define bond_is_last_slave(bond, pos) (pos == bond_last_slave(bond))
/* Since bond_first/last_slave can return NULL, these can return NULL too */ /* Since bond_first/last_slave can return NULL, these can return NULL too */
#define bond_next_slave(bond, pos) \ #define bond_next_slave(bond, pos) __bond_next_slave(bond, pos)
(bond_is_last_slave(bond, pos) ? bond_first_slave(bond) : \
bond_to_slave((pos)->list.next))
/** /**
* bond_for_each_slave - iterate over all slaves * bond_for_each_slave - iterate over all slaves
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册