diff options
author | Pavel Emelyanov <xemul@openvz.org> | 2008-05-18 00:10:11 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2008-05-22 06:34:25 -0400 |
commit | 8047637c70e4451e2ac1c17ed9a91a2f753daae7 (patch) | |
tree | 8119a215591c62175bc82dab5438d57790f0c14e /drivers/net/bonding | |
parent | 0883beca7f39ab0c6447af35080e5caaa07418e3 (diff) |
bonding: Remove unneeded list_empty checks.
Some places iterate over the checked list right after the check
itself, so even if the list is empty, the list_for_each_xxx
iterator will make everything right by himself.
Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
Acked-by: Jay Vosburgh <fubar@us.ibm.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/net/bonding')
-rw-r--r-- | drivers/net/bonding/bond_main.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c index 5e3b942fb51..2a0039f1937 100644 --- a/drivers/net/bonding/bond_main.c +++ b/drivers/net/bonding/bond_main.c | |||
@@ -2433,9 +2433,6 @@ static int bond_has_this_ip(struct bonding *bond, __be32 ip) | |||
2433 | if (ip == bond->master_ip) | 2433 | if (ip == bond->master_ip) |
2434 | return 1; | 2434 | return 1; |
2435 | 2435 | ||
2436 | if (list_empty(&bond->vlan_list)) | ||
2437 | return 0; | ||
2438 | |||
2439 | list_for_each_entry(vlan, &bond->vlan_list, vlan_list) { | 2436 | list_for_each_entry(vlan, &bond->vlan_list, vlan_list) { |
2440 | if (ip == vlan->vlan_ip) | 2437 | if (ip == vlan->vlan_ip) |
2441 | return 1; | 2438 | return 1; |
@@ -3495,9 +3492,6 @@ static int bond_inetaddr_event(struct notifier_block *this, unsigned long event, | |||
3495 | } | 3492 | } |
3496 | } | 3493 | } |
3497 | 3494 | ||
3498 | if (list_empty(&bond->vlan_list)) | ||
3499 | continue; | ||
3500 | |||
3501 | list_for_each_entry(vlan, &bond->vlan_list, vlan_list) { | 3495 | list_for_each_entry(vlan, &bond->vlan_list, vlan_list) { |
3502 | vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id); | 3496 | vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id); |
3503 | if (vlan_dev == event_dev) { | 3497 | if (vlan_dev == event_dev) { |