dect
/
linux-2.6
Archived
13
0
Fork 0

xen-netfront: use netif_start_queue() on xennet_open()

xen-netfront never called netif_start_queue() and was was waking the
queue on xennet_open(), triggering the BUG_ON() on __netif_schedule().

Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
This commit is contained in:
Eduardo Habkost 2008-07-31 17:36:55 -03:00 committed by Jeff Garzik
parent b08c42b283
commit 0b1ab1b8a4
1 changed files with 1 additions and 1 deletions

View File

@ -329,7 +329,7 @@ static int xennet_open(struct net_device *dev)
}
spin_unlock_bh(&np->rx_lock);
xennet_maybe_wake_tx(dev);
netif_start_queue(dev);
return 0;
}