mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
igbvf: fix panic on load
Introduced by commit:e6484930d7c73d324bccda7d43d131088da697b9 net: allocate tx queues in register_netdevice Signed-off-by: Emil Tantilov <emil.s.tantilov@intel.com> Acked-by: Greg Rose <greg.v.rose@intel.com> Tested-by: Jeff Pieper <jeffrey.e.pieper@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
ec43a81cfa
commit
de7fe7874d
@ -2783,15 +2783,15 @@ static int __devinit igbvf_probe(struct pci_dev *pdev,
|
|||||||
/* reset the hardware with the new settings */
|
/* reset the hardware with the new settings */
|
||||||
igbvf_reset(adapter);
|
igbvf_reset(adapter);
|
||||||
|
|
||||||
/* tell the stack to leave us alone until igbvf_open() is called */
|
|
||||||
netif_carrier_off(netdev);
|
|
||||||
netif_stop_queue(netdev);
|
|
||||||
|
|
||||||
strcpy(netdev->name, "eth%d");
|
strcpy(netdev->name, "eth%d");
|
||||||
err = register_netdev(netdev);
|
err = register_netdev(netdev);
|
||||||
if (err)
|
if (err)
|
||||||
goto err_hw_init;
|
goto err_hw_init;
|
||||||
|
|
||||||
|
/* tell the stack to leave us alone until igbvf_open() is called */
|
||||||
|
netif_carrier_off(netdev);
|
||||||
|
netif_stop_queue(netdev);
|
||||||
|
|
||||||
igbvf_print_device_info(adapter);
|
igbvf_print_device_info(adapter);
|
||||||
|
|
||||||
igbvf_initialize_last_counter_stats(adapter);
|
igbvf_initialize_last_counter_stats(adapter);
|
||||||
|
Loading…
Reference in New Issue
Block a user