From: Greg KH <gregkh@suse.de>
To: Ian Abbott <abbotti@mev.co.uk>
Cc: Greg KH <greg@kroah.com>,
linux-kernel@vger.kernel.org, linux-pci@atrey.karlin.mff.cuni.cz,
pcihpd-discuss@lists.sourceforge.net,
kristen.c.accardi@intel.com
Subject: Re: [RESEND][PATCH-2.6.24-rc8] Fix fakephp deadlock
Date: Wed, 23 Jan 2008 10:42:39 -0800 [thread overview]
Message-ID: <20080123184239.GA22852@suse.de> (raw)
In-Reply-To: <4797899E.6020207@mev.co.uk>
On Wed, Jan 23, 2008 at 06:38:22PM +0000, Ian Abbott wrote:
> On 23/01/08 17:46, Greg KH wrote:
>> On Tue, Jan 22, 2008 at 02:28:08PM +0000, Ian Abbott wrote:
>>> #include <linux/init.h>
>>> #include <linux/string.h>
>>> #include <linux/slab.h>
>>> +#include <linux/workqueue.h>
>>> #include "../pci.h"
>>> #if !defined(MODULE)
>>> @@ -63,10 +64,13 @@ struct dummy_slot {
>>> struct list_head node;
>>> struct hotplug_slot *slot;
>>> struct pci_dev *dev;
>>> + struct work_struct remove_work;
>>> + unsigned long removed;
>> You are treating "removed" as an atomic value, so why not just make it
>> an atomic_t?
>
> Because I'm using it as a boolean?
Heh, an unsigned long as a boolean? Come on... :)
>> And what is protecting the fact that the flag could be set right after
>> it gets checked? I don't see a lock here :)
>
> Okay, it looks like there might be a race condition between enable_slot()
> and disable_slot() if some other task calls disable_slot() while
> enable_slot() is between the test_bit() and flush_workqueue() calls. I can
> fix that by avoiding the call to flush_workqueue() in enable_slot() and
> allocating and queueing a work queue item to defer the call to
> pci_rescan(). And enable_slot() won't then need to check if the slot was
> marked as removed - it can just go ahead and allocate and queue a work
> item.
That sounds reasonable.
thanks,
greg k-h
prev parent reply other threads:[~2008-01-23 18:49 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-01-22 14:28 [RESEND][PATCH-2.6.24-rc8] Fix fakephp deadlock Ian Abbott
2008-01-23 17:46 ` Greg KH
2008-01-23 18:38 ` Ian Abbott
2008-01-23 18:42 ` Greg KH [this message]
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=20080123184239.GA22852@suse.de \
--to=gregkh@suse.de \
--cc=abbotti@mev.co.uk \
--cc=greg@kroah.com \
--cc=kristen.c.accardi@intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@atrey.karlin.mff.cuni.cz \
--cc=pcihpd-discuss@lists.sourceforge.net \
/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.