linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] pci: pcie-rcar: fix a potential NULL pointer dereference
@ 2019-03-14  5:56 Kangjie Lu
  2019-03-14  7:30 ` Geert Uytterhoeven
  0 siblings, 1 reply; 12+ messages in thread
From: Kangjie Lu @ 2019-03-14  5:56 UTC (permalink / raw)
  To: kjlu
  Cc: pakki001, Simon Horman, Lorenzo Pieralisi, Bjorn Helgaas,
	linux-pci, linux-renesas-soc, linux-kernel

In case __get_free_pages fails and returns NULL, the fix returns
-ENOMEM and releases resources to avoid NULL pointer dereference.

Signed-off-by: Kangjie Lu <kjlu@umn.edu>
---
 drivers/pci/controller/pcie-rcar.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/drivers/pci/controller/pcie-rcar.c b/drivers/pci/controller/pcie-rcar.c
index c8febb009454..0ba26c31d928 100644
--- a/drivers/pci/controller/pcie-rcar.c
+++ b/drivers/pci/controller/pcie-rcar.c
@@ -929,6 +929,12 @@ static int rcar_pcie_enable_msi(struct rcar_pcie *pcie)
 
 	/* setup MSI data target */
 	msi->pages = __get_free_pages(GFP_KERNEL, 0);
+	if (!msi->pages) {
+		dev_err(dev, "failed to get free pages\n");
+		err = -ENOMEM;
+		goto err;
+	}
+
 	base = virt_to_phys((void *)msi->pages);
 
 	rcar_pci_write_reg(pcie, base | MSIFE, PCIEMSIALR);
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2019-03-29 16:22 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-14  5:56 [PATCH] pci: pcie-rcar: fix a potential NULL pointer dereference Kangjie Lu
2019-03-14  7:30 ` Geert Uytterhoeven
2019-03-14  8:07   ` [PATCH v2] " Kangjie Lu
2019-03-14  8:10     ` Geert Uytterhoeven
2019-03-15  7:27       ` [PATCH v2] tty: atmel_serial: fix a " Kangjie Lu
2019-03-15  8:22         ` Richard Genoud
2019-03-15 17:16           ` [PATCH] " Kangjie Lu
2019-03-18  7:28             ` Richard Genoud
2019-03-15  7:29       ` [PATCH v2] pci: pcie-rcar: fix a potential " Kangjie Lu
2019-03-15 10:07         ` Ulrich Hecht
2019-03-15 11:54         ` Simon Horman
2019-03-29 16:22         ` Lorenzo Pieralisi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).