mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-03 00:54:09 +08:00
net: sgi: ioc3-eth: no need to stop queue set_multicast_list
netif_stop_queue()/netif_wake_qeue() aren't needed for changing multicast filters. Signed-off-by: Thomas Bogendoerfer <tbogendoerfer@suse.de> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
d1c9454274
commit
70359dbe24
@ -1627,8 +1627,6 @@ static void ioc3_set_multicast_list(struct net_device *dev)
|
||||
struct netdev_hw_addr *ha;
|
||||
u64 ehar = 0;
|
||||
|
||||
netif_stop_queue(dev); /* Lock out others. */
|
||||
|
||||
spin_lock_irq(&ip->ioc3_lock);
|
||||
|
||||
if (dev->flags & IFF_PROMISC) { /* Set promiscuous. */
|
||||
@ -1660,8 +1658,6 @@ static void ioc3_set_multicast_list(struct net_device *dev)
|
||||
}
|
||||
|
||||
spin_unlock_irq(&ip->ioc3_lock);
|
||||
|
||||
netif_wake_queue(dev); /* Let us get going again. */
|
||||
}
|
||||
|
||||
module_pci_driver(ioc3_driver);
|
||||
|
Loading…
Reference in New Issue
Block a user