Re: [PATCH 1/1] Input: add sensable phantom driver

From: Greg KH
Date: Wed Mar 07 2007 - 11:52:09 EST


On Wed, Mar 07, 2007 at 05:38:59PM +0100, Jiri Slaby wrote:
> Dmitry Torokhov napsal(a):
> >>+static int __devinit phantom_probe(struct pci_dev *pdev,
> >>+ const struct pci_device_id *pci_id)
> >>+{
> >>+ struct phantom_device *pht;
> >>+ unsigned int minor;
> >>+ int retval;
> >>+
> >>+ retval = pci_enable_device(pdev);
> >>+ if (retval)
> >>+ goto err;
> >>+
> >>+ minor = phantom_get_free();
> >>+ if (minor == PHANTOM_MAX_MINORS) {
> >>+ dev_err(&pdev->dev, "too many devices found!\n");
> >>+ retval = -EIO;
> >>+ goto err;
> >>+ }
> >>+
> >>+ phantom_devices[minor] = 1;
> >
> >Locking? In face of multithreaded PCI probes it might be needed.
>
> I think, this is the same issue?
>
> <cite from="akpm" date="12/19/06">
> On Sat, 16 Dec 2006 02:09:48 +0100 (CET)
> Jiri Slaby <jirislaby@xxxxxxxxx> wrote:
>
> > isicom, fix probe race
> >
> > Fix two race conditions in the probe function with mutex.
> >
> > ...
> >
> > static int __devinit isicom_probe(struct pci_dev *pdev,
> > const struct pci_device_id *ent)
> > {
> > + static DEFINE_MUTEX(probe_lock);
>
> hm. How can isicom_probe() race with itself? Even with the dreaded
> multithreaded-pci-probing? It's only called once, by a single thread.
>
> Confused.
> </cite>
>
> What do you think? Greg?

We used to be able to call the pci probe functions from different
threads for different devices. But people seemed to like to enable
options that told them their box could blow up into tiny pieces and then
got upset when it did. So I removed the option :(

So you don't have to worry about it now, but note that it could race
with the remove function if two different devices are in the system, one
being added and one removed at the same time. So you should protect it
with a spinlock or something.

thanks,

greg k-h
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/