From: ebiederm@xmission.com (Eric W. Biederman)
To: jbarnes@virtuousgeek.org
Cc: Andrew Morton <akpm@linux-foundation.org>,
"Rafael J. Wysocki" <rjw@sisk.pl>,
linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [PATCH] pcie_portdriver: FIX: pcie_port_device_remove (take 2)
Date: Fri, 20 Feb 2009 20:16:07 -0800 [thread overview]
Message-ID: <m1r61s2znc.fsf_-_@fess.ebiederm.org> (raw)
In-Reply-To: <200902201153.52683.rjw@sisk.pl> (Rafael J. Wysocki's message of "Fri\, 20 Feb 2009 11\:53\:52 +0100")
pcie_port_device_remove currently calls the remove method of port
drivers twice. Ouch!
We are calling device_for_each_child multiple times for no apparent
reason.
So make it simple. Place put_device and device_unregister into
remove_iter, and throw out the rest. Only call device_for_each_child
once.
The code is simpler and actually works!
Changelog:
v2 rebase against the linux-next tree so I don't conflict with Rafael's
irq work, and remove the irq handling cleanups as Rafael's patch already
made them.
Signed-off-by: Eric W. Biederman <ebiederm@aristanetworks.com>
---
drivers/pci/pcie/portdrv_core.c | 23 +++--------------------
1 files changed, 3 insertions(+), 20 deletions(-)
diff --git a/drivers/pci/pcie/portdrv_core.c b/drivers/pci/pcie/portdrv_core.c
index 3aea92a..569af00 100644
--- a/drivers/pci/pcie/portdrv_core.c
+++ b/drivers/pci/pcie/portdrv_core.c
@@ -456,16 +456,9 @@ int pcie_port_device_resume(struct pci_dev *dev)
static int remove_iter(struct device *dev, void *data)
{
- struct pcie_port_service_driver *service_driver;
-
if (dev->bus == &pcie_port_bus_type) {
- if (dev->driver) {
- service_driver = to_service_driver(dev->driver);
- if (service_driver->remove)
- service_driver->remove(to_pcie_device(dev));
- }
- *(unsigned long*)data = (unsigned long)dev;
- return 1;
+ put_device(dev);
+ device_unregister(dev);
}
return 0;
}
@@ -480,18 +473,8 @@ static int remove_iter(struct device *dev, void *data)
void pcie_port_device_remove(struct pci_dev *dev)
{
struct pcie_port_data *port_data = pci_get_drvdata(dev);
- int status;
-
- do {
- unsigned long device_addr;
- status = device_for_each_child(&dev->dev, &device_addr, remove_iter);
- if (status) {
- struct device *device = (struct device*)device_addr;
- put_device(device);
- device_unregister(device);
- }
- } while (status);
+ device_for_each_child(&dev->dev, NULL, remove_iter);
switch (port_data->port_irq_mode) {
case PCIE_PORT_MSIX_MODE:
--
1.6.0.6
next prev parent reply other threads:[~2009-02-21 4:15 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-02-14 4:23 [PATCH] pcie_portdriver: FIX: pcie_port_device_remove Eric W. Biederman
2009-02-19 20:03 ` Andrew Morton
2009-02-19 20:55 ` Eric W. Biederman
2009-02-19 21:47 ` Rafael J. Wysocki
2009-02-19 23:30 ` Eric W. Biederman
2009-02-19 23:53 ` Jesse Barnes
2009-02-20 10:53 ` Rafael J. Wysocki
2009-02-21 4:16 ` Eric W. Biederman [this message]
2009-02-24 19:12 ` [PATCH] pcie_portdriver: FIX: pcie_port_device_remove (take 2) Jesse Barnes
2009-02-25 4:22 ` Eric W. Biederman
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=m1r61s2znc.fsf_-_@fess.ebiederm.org \
--to=ebiederm@xmission.com \
--cc=akpm@linux-foundation.org \
--cc=jbarnes@virtuousgeek.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=rjw@sisk.pl \
/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