From: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>
To: Alex Chiang <achiang@hp.com>
Cc: jbarnes@virtuousgeek.org, linux-pci@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/2] PCI Hotplug: convert acpi_pci_detect_ejectable() to take an acpi_handle
Date: Thu, 10 Sep 2009 10:46:21 +0900 [thread overview]
Message-ID: <4AA85A6D.9040302@jp.fujitsu.com> (raw)
In-Reply-To: <20090909204935.11037.98403.stgit@bob.kio>
Alex Chiang wrote:
> acpi_pci_detect_ejectable() goes through effort to convert its
> struct pci_bus arg to an acpi_handle, but every time we use this
> interface, we already have the handle available.
>
> So let's just use the handle instead of converting back and forth.
>
> Cc: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>
> Signed-off-by: Alex Chiang <achiang@hp.com>
> ---
>
> drivers/pci/hotplug/acpi_pcihp.c | 9 +++------
> drivers/pci/hotplug/acpiphp_glue.c | 33 +++++++++++----------------------
> drivers/pci/hotplug/pciehp_acpi.c | 5 +++--
> include/linux/pci_hotplug.h | 2 +-
> 4 files changed, 18 insertions(+), 31 deletions(-)
>
> diff --git a/drivers/pci/hotplug/acpi_pcihp.c b/drivers/pci/hotplug/acpi_pcihp.c
> index eb15958..80af75c 100644
> --- a/drivers/pci/hotplug/acpi_pcihp.c
> +++ b/drivers/pci/hotplug/acpi_pcihp.c
> @@ -500,18 +500,15 @@ check_hotplug(acpi_handle handle, u32 lvl, void *context, void **rv)
>
> /**
> * acpi_pci_detect_ejectable - check if the PCI bus has ejectable slots
> - * @pbus - PCI bus to scan
> + * @handle - handle of the PCI bus to scan
> *
> * Returns 1 if the PCI bus has ACPI based ejectable slots, 0 otherwise.
> */
> -int acpi_pci_detect_ejectable(struct pci_bus *pbus)
> +int acpi_pci_detect_ejectable(acpi_handle handle)
> {
> - acpi_handle handle;
> int found = 0;
>
> - if (!(handle = acpi_pci_get_bridge_handle(pbus)))
> - return 0;
> - acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, (u32)1,
I think we need NULL check here.
if (!handle)
return 0;
(snip.)
> diff --git a/drivers/pci/hotplug/pciehp_acpi.c b/drivers/pci/hotplug/pciehp_acpi.c
> index 9604801..0c6aa99 100644
> --- a/drivers/pci/hotplug/pciehp_acpi.c
> +++ b/drivers/pci/hotplug/pciehp_acpi.c
> @@ -47,7 +47,7 @@ int pciehp_acpi_slot_detection_check(struct pci_dev *dev)
> {
> if (slot_detection_mode != PCIEHP_DETECT_ACPI)
> return 0;
> - if (acpi_pci_detect_ejectable(dev->subordinate))
> + if (acpi_pci_detect_ejectable(dev->dev.archdata.acpi_handle))
> return 0;
How about:
handle = DEVICE_ACPI_HANDLE(&dev->dev);
if (acpi_pci_detect_ejectable(handle))
return 0;
> return -ENODEV;
> }
> @@ -94,7 +94,8 @@ static int __init dummy_probe(struct pcie_device *dev)
> dup_slot_id++;
> }
> list_add_tail(&slot->slot_list, &dummy_slots);
> - if (!acpi_slot_detected && acpi_pci_detect_ejectable(pbus))
> + if (!acpi_slot_detected &&
> + acpi_pci_detect_ejectable(pbus->self->dev.archdata.acpi_handle))
> acpi_slot_detected = 1;
How about:
handle = DEVICE_ACPI_HANDLE(&pdev->dev);
if (!acpi_slot_detected && acpi_pci_detect_ejectable(handle))
And the following line at the head of dummy_probe() seems no longer
needed.
struct pci_bus *pbus = pdev->subordinate;
Thanks,
Kenji Kaneshige
next prev parent reply other threads:[~2009-09-10 1:46 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-09-09 20:49 [PATCH 0/2] PCI Hotplug: internal interface cleanups Alex Chiang
2009-09-09 20:49 ` [PATCH 1/2] PCI Hotplug: acpiphp: find bridges the easy way Alex Chiang
2009-09-09 20:49 ` [PATCH 2/2] PCI Hotplug: convert acpi_pci_detect_ejectable() to take an acpi_handle Alex Chiang
2009-09-10 1:46 ` Kenji Kaneshige [this message]
2009-09-10 18:31 ` Alex Chiang
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=4AA85A6D.9040302@jp.fujitsu.com \
--to=kaneshige.kenji@jp.fujitsu.com \
--cc=achiang@hp.com \
--cc=jbarnes@virtuousgeek.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.