From: "Radim Krčmář" <rkrcmar@redhat.com>
To: Linux Kernel <linux-kernel@vger.kernel.org>
Cc: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>
Subject: pcie aspm link setup, grandparent instead of parent?
Date: Wed, 12 Jun 2013 19:21:32 +0200 [thread overview]
Message-ID: <20130612172132.GG27284@hpx.cz> (raw)
Hello,
as a consequence of hitting a NULL dereference bug[1] while downstream
aspm is setting up link_state, I started to wonder why is the code
skipping its parent bus in favour of grandparent's link_state.[2]
Is this right? (I have no device to test on ...)
Thanks.
---
1: https://bugzilla.redhat.com/show_bug.cgi?id=972381
The bug is hit because "pdev->bus->parent" has NULL "->parent" and thus
NULL "->self".
2: "pdev = bus->self", so "pdev->bus->parent == bus->parent->parent"
diff --git a/drivers/pci/pcie/aspm.c b/drivers/pci/pcie/aspm.c
index 403a443..d58e282 100644
--- a/drivers/pci/pcie/aspm.c
+++ b/drivers/pci/pcie/aspm.c
@@ -527,7 +527,7 @@ static struct pcie_link_state *alloc_pcie_link_state(struct pci_dev *pdev)
link->pdev = pdev;
if (pci_pcie_type(pdev) == PCI_EXP_TYPE_DOWNSTREAM) {
struct pcie_link_state *parent;
- parent = pdev->bus->parent->self->link_state;
+ parent = pdev->bus->self->link_state;
if (!parent) {
kfree(link);
return NULL;
next reply other threads:[~2013-06-12 17:21 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-06-12 17:21 Radim Krčmář [this message]
2013-06-12 21:54 ` Bjorn Helgaas
2013-06-13 10:09 ` Radim Krčmář
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=20130612172132.GG27284@hpx.cz \
--to=rkrcmar@redhat.com \
--cc=kaneshige.kenji@jp.fujitsu.com \
--cc=linux-kernel@vger.kernel.org \
/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®