diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-08-07 10:46:27 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-08-07 10:46:27 -0700 |
commit | cba8784ae0a9f7d0f1f87e0607e7ae66fc45666c (patch) | |
tree | 58a53f6b8db0ec64e93ebece1c1f07aa54502544 | |
parent | 9cf9d28e9bf991af21fc4bbf33281b66843b094b (diff) | |
parent | 0bf52b981770cbf006323bab5177f2858a196766 (diff) | |
download | blackbird-op-linux-cba8784ae0a9f7d0f1f87e0607e7ae66fc45666c.tar.gz blackbird-op-linux-cba8784ae0a9f7d0f1f87e0607e7ae66fc45666c.zip |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6:
net: Fix spinlock use in alloc_netdev_mq()
-rw-r--r-- | net/core/dev.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/net/core/dev.c b/net/core/dev.c index 43e61ba7bd95..6a94475aee85 100644 --- a/net/core/dev.c +++ b/net/core/dev.c @@ -4007,9 +4007,7 @@ static void dev_unicast_flush(struct net_device *dev) static void dev_unicast_init(struct net_device *dev) { - netif_addr_lock_bh(dev); __hw_addr_init(&dev->uc); - netif_addr_unlock_bh(dev); } |