Skip to content

Commit 3cab8c6

Browse files
kuba-moodavem330
authored andcommitted
mlx4: disable device on shutdown
It appears that not disabling a PCI device on .shutdown may lead to a Hardware Error with particular (perhaps buggy) BIOS versions: mlx4_en: eth0: Close port called mlx4_en 0000:04:00.0: removed PHC reboot: Restarting system {1}[Hardware Error]: Hardware error from APEI Generic Hardware Error Source: 1 {1}[Hardware Error]: event severity: fatal {1}[Hardware Error]: Error 0, type: fatal {1}[Hardware Error]: section_type: PCIe error {1}[Hardware Error]: port_type: 4, root port {1}[Hardware Error]: version: 1.16 {1}[Hardware Error]: command: 0x4010, status: 0x0143 {1}[Hardware Error]: device_id: 0000:00:02.2 {1}[Hardware Error]: slot: 0 {1}[Hardware Error]: secondary_bus: 0x04 {1}[Hardware Error]: vendor_id: 0x8086, device_id: 0x2f06 {1}[Hardware Error]: class_code: 000604 {1}[Hardware Error]: bridge: secondary_status: 0x2000, control: 0x0003 {1}[Hardware Error]: aer_uncor_status: 0x00100000, aer_uncor_mask: 0x00000000 {1}[Hardware Error]: aer_uncor_severity: 0x00062030 {1}[Hardware Error]: TLP Header: 40000018 040000ff 791f4080 00000000 [hw error repeats] Kernel panic - not syncing: Fatal hardware error! CPU: 0 PID: 2189 Comm: reboot Kdump: loaded Not tainted 5.6.x-blabla #1 Hardware name: HP ProLiant DL380 Gen9/ProLiant DL380 Gen9, BIOS P89 05/05/2017 Fix the mlx4 driver. This is a very similar problem to what had been fixed in: commit 0d98ba8 ("scsi: hpsa: disable device during shutdown") to address https://bugzilla.kernel.org/show_bug.cgi?id=199779. Fixes: 2ba5fbd ("net/mlx4_core: Handle AER flow properly") Reported-by: Jake Lawrence <[email protected]> Signed-off-by: Jakub Kicinski <[email protected]> Reviewed-by: Saeed Mahameed <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent a7ef23e commit 3cab8c6

File tree

1 file changed

+2
-0
lines changed
  • drivers/net/ethernet/mellanox/mlx4

1 file changed

+2
-0
lines changed

drivers/net/ethernet/mellanox/mlx4/main.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4356,12 +4356,14 @@ static void mlx4_pci_resume(struct pci_dev *pdev)
43564356
static void mlx4_shutdown(struct pci_dev *pdev)
43574357
{
43584358
struct mlx4_dev_persistent *persist = pci_get_drvdata(pdev);
4359+
struct mlx4_dev *dev = persist->dev;
43594360

43604361
mlx4_info(persist->dev, "mlx4_shutdown was called\n");
43614362
mutex_lock(&persist->interface_state_mutex);
43624363
if (persist->interface_state & MLX4_INTERFACE_STATE_UP)
43634364
mlx4_unload_one(pdev);
43644365
mutex_unlock(&persist->interface_state_mutex);
4366+
mlx4_pci_disable_device(dev);
43654367
}
43664368

43674369
static const struct pci_error_handlers mlx4_err_handler = {

0 commit comments

Comments
 (0)