diff options
author | Yang Yingliang <yangyingliang@huawei.com> | 2022-11-28 14:55:12 +0800 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2022-11-28 09:42:41 -0800 |
commit | 9c8921555907f4d723f01ed2d859b66f2d14f08e (patch) | |
tree | 655d7830d6cc226fbf33d16d0c2fe61587f1e85a /drivers/edac | |
parent | b586a59e14e61a4805e1ed08a8c4f67ed38ea7e4 (diff) | |
download | linux-9c8921555907f4d723f01ed2d859b66f2d14f08e.tar.bz2 |
EDAC/i10nm: fix refcount leak in pci_get_dev_wrapper()
As the comment of pci_get_domain_bus_and_slot() says, it returns
a PCI device with refcount incremented, so it doesn't need to
call an extra pci_dev_get() in pci_get_dev_wrapper(), and the PCI
device needs to be put in the error path.
Fixes: d4dc89d069aa ("EDAC, i10nm: Add a driver for Intel 10nm server processors")
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Reviewed-by: Qiuxu Zhuo <qiuxu.zhuo@intel.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Link: https://lore.kernel.org/r/20221128065512.3572550-1-yangyingliang@huawei.com
Diffstat (limited to 'drivers/edac')
-rw-r--r-- | drivers/edac/i10nm_base.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/edac/i10nm_base.c b/drivers/edac/i10nm_base.c index a22ea053f8e1..8af4d2523194 100644 --- a/drivers/edac/i10nm_base.c +++ b/drivers/edac/i10nm_base.c @@ -304,11 +304,10 @@ static struct pci_dev *pci_get_dev_wrapper(int dom, unsigned int bus, if (unlikely(pci_enable_device(pdev) < 0)) { edac_dbg(2, "Failed to enable device %02x:%02x.%x\n", bus, dev, fun); + pci_dev_put(pdev); return NULL; } - pci_dev_get(pdev); - return pdev; } |