lkml.org 
[lkml]   [2009]   [Jun]   [25]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
SubjectRe: [2.6.31-rc1] oops in acpi_get_pci_dev
From
On Thu, Jun 25, 2009 at 8:59 PM, Alex Chiang<achiang@hp.com> wrote:
> Hi Jeff, Alessandro,
>
> First, thanks for reporting this bug, and apologies for the
> inconvenience.

No problem - that's why we're trying out prerelease kernels :)

> * Jeff Chua <jeff.chua.linux@gmail.com>:
>> On Thu, Jun 25, 2009 at 11:13 PM, Troy Moure<twmoure@szypr.net> wrote:
>> > (I don't know if it's the "right" fix or not, not being familiar with the
>> > system.  If it is, I can send it in as a proper patch.)
>> >
>> > diff --git a/drivers/acpi/pci_root.c b/drivers/acpi/pci_root.c
>> > index 8a5bf3b..55b5b90 100644
>> > --- a/drivers/acpi/pci_root.c
>> > +++ b/drivers/acpi/pci_root.c
>> > @@ -395,7 +395,7 @@ struct pci_dev *acpi_get_pci_dev(acpi_handle handle)
>> >                fn  = adr & 0xffff;
>> >
>> >                pdev = pci_get_slot(pbus, PCI_DEVFN(dev, fn));
>> > -               if (hnd == handle)
>> > +               if (!pdev || hnd == handle)
>> >                        break;
>> >
>> >                pbus = pdev->subordinate;
>
> I'm a little hesitant to do this (yet), because it means one of
> my assumptions was wrong.
>
> Can you please try this debug patch and send me the dmesg output?
> Please boot with 'debug'. I did add the same NULL check so you
> shouldn't crash, and can send me the output after you're done
> booting up.
>
> Also, if you could include the output of 'lspci -v', that would
> be great too.
>
> Thanks.
>
> /ac
>
> diff --git a/drivers/acpi/pci_root.c b/drivers/acpi/pci_root.c
> index 8a5bf3b..7674987 100644
> --- a/drivers/acpi/pci_root.c
> +++ b/drivers/acpi/pci_root.c
> @@ -355,12 +355,20 @@ struct pci_dev *acpi_get_pci_dev(acpi_handle handle)
>        struct pci_dev *pdev = NULL;
>        struct acpi_handle_node *node, *tmp;
>        struct acpi_pci_root *root;
> +       struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
>        LIST_HEAD(device_list);
>
>        /*
>         * Walk up the ACPI CA namespace until we reach a PCI root bridge.
>         */
>        phandle = handle;
> +
> +       acpi_get_name(phandle, ACPI_FULL_PATHNAME, &buffer);
> +       printk("Starting root bridge search from %s\n", (char *)buffer.pointer);
> +       kfree(buffer.pointer);
> +       buffer.pointer = NULL;
> +       buffer.length = 0;
> +
>        while (!acpi_is_root_bridge(phandle)) {
>                node = kzalloc(sizeof(struct acpi_handle_node), GFP_KERNEL);
>                if (!node)
> @@ -370,6 +378,12 @@ struct pci_dev *acpi_get_pci_dev(acpi_handle handle)
>                node->handle = phandle;
>                list_add(&node->node, &device_list);
>
> +               acpi_get_name(phandle, ACPI_FULL_PATHNAME, &buffer);
> +               printk("+ Adding %s\n", (char *)buffer.pointer);
> +               kfree(buffer.pointer);
> +               buffer.pointer = NULL;
> +               buffer.length = 0;
> +
>                status = acpi_get_parent(phandle, &phandle);
>                if (ACPI_FAILURE(status))
>                        goto out;
> @@ -380,6 +394,7 @@ struct pci_dev *acpi_get_pci_dev(acpi_handle handle)
>                goto out;
>
>        pbus = root->bus;
> +       dev_info(&pbus->dev, "I'm a little pci_bus, short and stout...\n");
>
>        /*
>         * Now, walk back down the PCI device tree until we return to our
> @@ -394,7 +409,16 @@ struct pci_dev *acpi_get_pci_dev(acpi_handle handle)
>                dev = (adr >> 16) & 0xffff;
>                fn  = adr & 0xffff;
>
> +               printk("Searching for %04x:%02x:%02x.%d\n",
> +                       pci_domain_nr(pbus), pbus->number,
> +                       PCI_SLOT(PCI_DEVFN(dev, fn)),
> +                       PCI_FUNC(PCI_DEVFN(dev, fn)));
> +
>                pdev = pci_get_slot(pbus, PCI_DEVFN(dev, fn));
> +               if (!pdev) {
> +                       printk("Ouch.\n");
> +                       break;
> +               }
>                if (hnd == handle)
>                        break;
>
>

I'm not sure what you mean by "boot with debug" - so I'm attaching
the output of dmesg from a 2.6.31-rc1 plus your patch ordinary boot,
(which doesn't crash) and lspci -v -- hoping it's enough... and if it
isn't just please explain what I should do (and I'll do that tomorrow).

Thanks,

--alessandro

"And if a God will lay to rest anywhere we want to go
In your house I long to be, room by room, patiently"

(Audioslave, "Like A Stone")
[unhandled content-type:application/octet-stream][unhandled content-type:application/octet-stream]
\
 
 \ /
  Last update: 2009-06-25 23:35    [W:0.043 / U:0.436 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site