Re: [PATCH 044/190] Revert "RDMA/pvrdma: Fix missing pci disable in pvrdma_pci_probe()"

From: Roland Dreier
Date: Wed Apr 21 2021 - 15:25:21 EST


This is a really weird one because the patch actually looks correct
and the revert looks wrong??

ret = pci_enable_device(pdev);

[...dbg statements...]

if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM) ||
!(pci_resource_flags(pdev, 1) & IORESOURCE_MEM)) {
dev_err(&pdev->dev, "PCI BAR region not MMIO\n");
ret = -ENOMEM;
goto err_disable_pdev;
}

- R.