jme: fix panic on load
Its now illegal to call netif_stop_queue() before register_netdev() Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com> Cc: Guo-Fu Tseng <cooldavid@cooldavid.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
ce384d91cd
commit
fde459007d
@ -2955,11 +2955,7 @@ jme_init_one(struct pci_dev *pdev,
|
|||||||
* Tell stack that we are not ready to work until open()
|
* Tell stack that we are not ready to work until open()
|
||||||
*/
|
*/
|
||||||
netif_carrier_off(netdev);
|
netif_carrier_off(netdev);
|
||||||
netif_stop_queue(netdev);
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Register netdev
|
|
||||||
*/
|
|
||||||
rc = register_netdev(netdev);
|
rc = register_netdev(netdev);
|
||||||
if (rc) {
|
if (rc) {
|
||||||
pr_err("Cannot register net device\n");
|
pr_err("Cannot register net device\n");
|
||||||
|
Loading…
Reference in New Issue
Block a user