mirror of https://gitee.com/openkylin/linux.git
be2net: clear intr bit in be_probe()
It may be set in the card while the driver is probed by kdump kernel after a crash. Signed-off-by: Sathya Perla <sathya.perla@emulex.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
482c9e7987
commit
b9ab82c774
|
@ -3417,6 +3417,12 @@ static int __devinit be_probe(struct pci_dev *pdev,
|
|||
if (status)
|
||||
goto stats_clean;
|
||||
|
||||
/* The INTR bit may be set in the card when probed by a kdump kernel
|
||||
* after a crash.
|
||||
*/
|
||||
if (!lancer_chip(adapter))
|
||||
be_intr_set(adapter, false);
|
||||
|
||||
be_msix_enable(adapter);
|
||||
|
||||
INIT_DELAYED_WORK(&adapter->work, be_worker);
|
||||
|
|
Loading…
Reference in New Issue