From: Gavin Shan <shangw@linux.vnet.ibm.com>
To: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Cc: linuxppc-dev@lists.ozlabs.org, shangw@linux.vnet.ibm.com,
paulus@samba.org
Subject: Re: [PATCH] powerpc/eeh: drop taken reference to driver on eeh_rmv_device
Date: Fri, 31 Jan 2014 08:46:11 +0800 [thread overview]
Message-ID: <20140131004611.GA6790@shangw.(null)> (raw)
In-Reply-To: <1391086848-11311-1-git-send-email-cascardo@linux.vnet.ibm.com>
On Thu, Jan 30, 2014 at 11:00:48AM -0200, Thadeu Lima de Souza Cascardo wrote:
>Commit f5c57710dd62dd06f176934a8b4b8accbf00f9f8 ("powerpc/eeh: Use
>partial hotplug for EEH unaware drivers") introduces eeh_rmv_device,
>which may grab a reference to a driver, but not release it.
>
>That prevents a driver from being removed after it has gone through EEH
>recovery.
>
>This patch drops the reference in either exit path if it was taken.
>
>Signed-off-by: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
>---
> arch/powerpc/kernel/eeh_driver.c | 5 ++++-
> 1 files changed, 4 insertions(+), 1 deletions(-)
>
>diff --git a/arch/powerpc/kernel/eeh_driver.c b/arch/powerpc/kernel/eeh_driver.c
>index 7bb30dc..afe7337 100644
>--- a/arch/powerpc/kernel/eeh_driver.c
>+++ b/arch/powerpc/kernel/eeh_driver.c
>@@ -364,7 +364,7 @@ static void *eeh_rmv_device(void *data, void *userdata)
> return NULL;
> driver = eeh_pcid_get(dev);
> if (driver && driver->err_handler)
>- return NULL;
>+ goto out;
>
> /* Remove it from PCI subsystem */
> pr_debug("EEH: Removing %s without EEH sensitive driver\n",
>@@ -377,6 +377,9 @@ static void *eeh_rmv_device(void *data, void *userdata)
For normal case (driver without EEH support), we probably release the reference
to the driver before pci_stop_and_remove_bus_device().
> pci_stop_and_remove_bus_device(dev);
> pci_unlock_rescan_remove();
>
>+out:
>+ if (driver)
>+ eeh_pcid_put(dev);
> return NULL;
We needn't "if (driver)" here as eeh_pcid_put() already had the check.
> }
>
Thanks,
Gavin
next prev parent reply other threads:[~2014-01-31 0:46 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-01-30 13:00 [PATCH] powerpc/eeh: drop taken reference to driver on eeh_rmv_device Thadeu Lima de Souza Cascardo
2014-01-31 0:46 ` Gavin Shan [this message]
2014-01-31 17:24 ` Thadeu Lima de Souza Cascardo
2014-02-04 2:03 ` Gavin Shan
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='20140131004611.GA6790@shangw.(null)' \
--to=shangw@linux.vnet.ibm.com \
--cc=cascardo@linux.vnet.ibm.com \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=paulus@samba.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;
as well as URLs for NNTP newsgroup(s).