[MACVLAN]: Remove unnecessary IFF_UP check Only devices that are UP are in the hash, so macvlan_broadcast() doesn't need to check for IFF_UP.
Signed-off-by: Patrick McHardy <[EMAIL PROTECTED]> --- commit e2d06a34b52a999e8c539d1cdef51ff523e2f2c2 tree f95a5eef37c421950ddc7318797909c0031ee948 parent 86aa441a13a474e66d484af38575609d9a0ff8ec author Patrick McHardy <[EMAIL PROTECTED]> Thu, 15 Nov 2007 16:33:24 +0100 committer Patrick McHardy <[EMAIL PROTECTED]> Thu, 15 Nov 2007 16:33:24 +0100 drivers/net/macvlan.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/drivers/net/macvlan.c b/drivers/net/macvlan.c index 2e4bcd5..461149c 100644 --- a/drivers/net/macvlan.c +++ b/drivers/net/macvlan.c @@ -73,8 +73,6 @@ static void macvlan_broadcast(struct sk_buff *skb, for (i = 0; i < MACVLAN_HASH_SIZE; i++) { hlist_for_each_entry_rcu(vlan, n, &port->vlan_hash[i], hlist) { dev = vlan->dev; - if (unlikely(!(dev->flags & IFF_UP))) - continue; nskb = skb_clone(skb, GFP_ATOMIC); if (nskb == NULL) { - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html