Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1629030 > unrolled thread

[PATCH 1/1] PCI: check return value of pci_find_ext_capability

Started byPan Bian <bianpan201603@163.com>
First post2017-04-23 16:10 +0200
Last post2017-04-24 12:40 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH 1/1] PCI: check return value of pci_find_ext_capability Pan Bian <bianpan201603@163.com> - 2017-04-23 16:10 +0200
    Re: [PATCH 1/1] PCI: check return value of pci_find_ext_capability Mika Westerberg <mika.westerberg@linux.intel.com> - 2017-04-24 12:40 +0200

#1629030 — [PATCH 1/1] PCI: check return value of pci_find_ext_capability

FromPan Bian <bianpan201603@163.com>
Date2017-04-23 16:10 +0200
Subject[PATCH 1/1] PCI: check return value of pci_find_ext_capability
Message-ID<tzqn7-148-7@gated-at.bofh.it>
From: Pan Bian <bianpan2016@163.com>

Function pci_find_ext_capability() will returns 0 on failure, and its
return value should be checked before it is used. However, in function
pcie_port_enable_msix(), its return value is not checked. This patch
adds the check.

Signed-off-by: Pan Bian <bianpan2016@163.com>
---
 drivers/pci/pcie/portdrv_core.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/pci/pcie/portdrv_core.c b/drivers/pci/pcie/portdrv_core.c
index cea504f..001951d 100644
--- a/drivers/pci/pcie/portdrv_core.c
+++ b/drivers/pci/pcie/portdrv_core.c
@@ -103,6 +103,8 @@ static int pcie_port_enable_msix(struct pci_dev *dev, int *irqs, int mask)
 		 * interrupt message."
 		 */
 		pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
+		if (!pos)
+			goto out_free_irqs;
 		pci_read_config_dword(dev, pos + PCI_ERR_ROOT_STATUS, &reg32);
 		entry = reg32 >> 27;
 		if (entry >= nr_entries)
-- 
1.9.1

[toc] | [next] | [standalone]


#1629404

FromMika Westerberg <mika.westerberg@linux.intel.com>
Date2017-04-24 12:40 +0200
Message-ID<tzJzr-5R1-1@gated-at.bofh.it>
In reply to#1629030
On Sun, Apr 23, 2017 at 10:00:20PM +0800, Pan Bian wrote:
> From: Pan Bian <bianpan2016@163.com>
> 
> Function pci_find_ext_capability() will returns 0 on failure, and its
> return value should be checked before it is used. However, in function
> pcie_port_enable_msix(), its return value is not checked. This patch
> adds the check.
> 
> Signed-off-by: Pan Bian <bianpan2016@163.com>
> ---
>  drivers/pci/pcie/portdrv_core.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/drivers/pci/pcie/portdrv_core.c b/drivers/pci/pcie/portdrv_core.c
> index cea504f..001951d 100644
> --- a/drivers/pci/pcie/portdrv_core.c
> +++ b/drivers/pci/pcie/portdrv_core.c
> @@ -103,6 +103,8 @@ static int pcie_port_enable_msix(struct pci_dev *dev, int *irqs, int mask)
>  		 * interrupt message."
>  		 */
>  		pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
> +		if (!pos)
> +			goto out_free_irqs;

I don't think this can happen because get_port_device_capability() will
enumerate this capability and only if it exists, set PCIE_PORT_SERVICE_AER.

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web