OSDN Git Service

bnxt_en: Disable bus master during PCI shutdown and driver unload.
authorMichael Chan <michael.chan@broadcom.com>
Sat, 29 Jun 2019 15:16:44 +0000 (11:16 -0400)
committerDavid S. Miller <davem@davemloft.net>
Sun, 30 Jun 2019 23:00:25 +0000 (16:00 -0700)
commitc20dc142dd7b2884b8570eeab323bcd4a84294fa
treee63a7eb997867558489dbfde09421cdc7fa51b65
parent7b75e49de424ceb53d13e60f35d0a73765626fda
bnxt_en: Disable bus master during PCI shutdown and driver unload.

Some chips with older firmware can continue to perform DMA read from
context memory even after the memory has been freed.  In the PCI shutdown
method, we need to call pci_disable_device() to shutdown DMA to prevent
this DMA before we put the device into D3hot.  DMA memory request in
D3hot state will generate PCI fatal error.  Similarly, in the driver
remove method, the context memory should only be freed after DMA has
been shutdown for correctness.

Fixes: 98f04cf0f1fc ("bnxt_en: Check context memory requirements from firmware.")
Signed-off-by: Michael Chan <michael.chan@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/broadcom/bnxt/bnxt.c