mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "Luiz Fernando N. Capitulino" <lcapitulino@conectiva.com.br>
To: marcelo.tosatti@cyclades.com
Cc: linux-kernel@vger.kernel.org
Subject: [PATCH 2.4] - drivers/pci/pci.c NULL pointer fix.
Date: Mon, 30 Aug 2004 12:47:33 -0300	[thread overview]
Message-ID: <20040830124733.7d44dbe1.lcapitulino@conectiva.com.br> (raw)

 Marcelo,

 This is another bug fix: the function pci/pci.c::pci_add_new_bus() does not
check the return of pci_alloc_bus(). If this function returns NULL, `child'
can be utilised.

 In the patch bellow I added the check, if the call that pci_scan_bridge()
is doing to pci_alloc_bus() return NULL, pci_scan_bridge() returns `max'
(Greg accepted this fix for 2.6, a while ago).

(against 2.4.28-pre2)


Signed-off-by: Luiz Capitulino <lcapitulino@conectiva.com.br>

 drivers/pci/pci.c |    9 +++++++++
 1 files changed, 9 insertions(+)


diff -X /home/capitulino/kernels/2.6/dontdiff -Nparu a/drivers/pci/pci.c a~/drivers/pci/pci.c
--- a/drivers/pci/pci.c	2004-08-07 20:26:05.000000000 -0300
+++ a~/drivers/pci/pci.c	2004-08-21 19:04:58.000000000 -0300
@@ -1238,6 +1238,8 @@ struct pci_bus * __devinit pci_add_new_b
 	 * Allocate a new bus, and inherit stuff from the parent..
 	 */
 	child = pci_alloc_bus();
+	if (!child)
+		return NULL;
 
 	list_add_tail(&child->node, &parent->children);
 	child->self = dev;
@@ -1291,7 +1293,11 @@ static int __devinit pci_scan_bridge(str
 		 */
 		if (pass)
 			return max;
+
 		child = pci_add_new_bus(bus, dev, 0);
+		if (!child)
+			return max;
+
 		child->primary = buses & 0xFF;
 		child->secondary = (buses >> 8) & 0xFF;
 		child->subordinate = (buses >> 16) & 0xFF;
@@ -1316,6 +1322,9 @@ static int __devinit pci_scan_bridge(str
 		pci_write_config_word(dev, PCI_STATUS, 0xffff);
 
 		child = pci_add_new_bus(bus, dev, ++max);
+		if (!child)
+			return max;
+
 		buses = (buses & 0xff000000)
 		      | ((unsigned int)(child->primary)     <<  0)
 		      | ((unsigned int)(child->secondary)   <<  8)

-- 
Luiz Fernando Capitulino

             reply	other threads:[~2004-08-30 16:48 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-08-30 15:47 Luiz Fernando N. Capitulino [this message]
2004-08-31 10:53 ` Marcelo Tosatti

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20040830124733.7d44dbe1.lcapitulino@conectiva.com.br \
    --to=lcapitulino@conectiva.com.br \
    --cc=linux-kernel@vger.kernel.org \
    --cc=marcelo.tosatti@cyclades.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®