linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Documentation/pci.txt inconsistency
@ 2004-11-17 12:34 Rolf Eike Beer
  2004-11-17 22:03 ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Rolf Eike Beer @ 2004-11-17 12:34 UTC (permalink / raw)
  To: Linux Kernel Mailing List

The examples in section 2 of Documentation/pci.txt use pci_get_*. Some lines
later there is this funny little paragraph:

> Note that these functions are not hotplug-safe.  Their hotplug-safe
> replacements are pci_get_device(), pci_get_class() and pci_get_subsys().
> They increment the reference count on the pci_dev that they return.
> You must eventually (possibly at module unload) decrement the reference
> count on these devices by calling pci_dev_put().

How about this:

These functions are hotplug-safe. They increment the reference count on the
pci_dev that they return. You must eventually (possibly at module unload)
decrement the reference count on these devices by calling pci_dev_put().

Eike

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Documentation/pci.txt inconsistency
  2004-11-17 12:34 Documentation/pci.txt inconsistency Rolf Eike Beer
@ 2004-11-17 22:03 ` Greg KH
  2004-11-18  9:45   ` Rolf Eike Beer
  0 siblings, 1 reply; 4+ messages in thread
From: Greg KH @ 2004-11-17 22:03 UTC (permalink / raw)
  To: Rolf Eike Beer; +Cc: Linux Kernel Mailing List

On Wed, Nov 17, 2004 at 01:34:56PM +0100, Rolf Eike Beer wrote:
> The examples in section 2 of Documentation/pci.txt use pci_get_*. Some lines
> later there is this funny little paragraph:
> 
> > Note that these functions are not hotplug-safe.  Their hotplug-safe
> > replacements are pci_get_device(), pci_get_class() and pci_get_subsys().
> > They increment the reference count on the pci_dev that they return.
> > You must eventually (possibly at module unload) decrement the reference
> > count on these devices by calling pci_dev_put().
> 
> How about this:
> 
> These functions are hotplug-safe. They increment the reference count on the
> pci_dev that they return. You must eventually (possibly at module unload)
> decrement the reference count on these devices by calling pci_dev_put().

Great, care to send a patch instead?

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Documentation/pci.txt inconsistency
  2004-11-17 22:03 ` Greg KH
@ 2004-11-18  9:45   ` Rolf Eike Beer
  2004-11-19 18:30     ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Rolf Eike Beer @ 2004-11-18  9:45 UTC (permalink / raw)
  To: Greg KH; +Cc: Linux Kernel Mailing List

Greg KH wrote:
> On Wed, Nov 17, 2004 at 01:34:56PM +0100, Rolf Eike Beer wrote:
> > The examples in section 2 of Documentation/pci.txt use pci_get_*. Some
> > lines
> >
> > later there is this funny little paragraph:
> > > Note that these functions are not hotplug-safe.  Their hotplug-safe
> > > replacements are pci_get_device(), pci_get_class() and
> > > pci_get_subsys(). They increment the reference count on the pci_dev
> > > that they return. You must eventually (possibly at module unload)
> > > decrement the reference count on these devices by calling
> > > pci_dev_put().
> >
> > How about this:
> >
> > These functions are hotplug-safe. They increment the reference count on
> > the pci_dev that they return. You must eventually (possibly at module
> > unload) decrement the reference count on these devices by calling
> > pci_dev_put().
>
> Great, care to send a patch instead?

Signed-off-by: Rolf Eike Beer <eike-kernel@sf-tec.de>

--- linux-2.6.9/Documentation/pci.txt	2004-11-18 09:43:56.927721824 +0100
+++ linux-2.6.10-rc2/Documentation/pci.txt	2004-11-18 10:09:06.070297280 +0100
@@ -156,11 +156,9 @@
 VENDOR_ID or DEVICE_ID.  This allows searching for any device from a
 specific vendor, for example.
 
-Note that these functions are not hotplug-safe.  Their hotplug-safe
-replacements are pci_get_device(), pci_get_class() and pci_get_subsys().
-They increment the reference count on the pci_dev that they return.
-You must eventually (possibly at module unload) decrement the reference
-count on these devices by calling pci_dev_put().
+   These functions are hotplug-safe. They increment the reference count on
+the pci_dev that they return. You must eventually (possibly at module unload)
+decrement the reference count on these devices by calling pci_dev_put().
 
 
 3. Enabling and disabling devices

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Documentation/pci.txt inconsistency
  2004-11-18  9:45   ` Rolf Eike Beer
@ 2004-11-19 18:30     ` Greg KH
  0 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2004-11-19 18:30 UTC (permalink / raw)
  To: Rolf Eike Beer; +Cc: Linux Kernel Mailing List

On Thu, Nov 18, 2004 at 10:45:01AM +0100, Rolf Eike Beer wrote:
> Greg KH wrote:
> > On Wed, Nov 17, 2004 at 01:34:56PM +0100, Rolf Eike Beer wrote:
> > > The examples in section 2 of Documentation/pci.txt use pci_get_*. Some
> > > lines
> > >
> > > later there is this funny little paragraph:
> > > > Note that these functions are not hotplug-safe.  Their hotplug-safe
> > > > replacements are pci_get_device(), pci_get_class() and
> > > > pci_get_subsys(). They increment the reference count on the pci_dev
> > > > that they return. You must eventually (possibly at module unload)
> > > > decrement the reference count on these devices by calling
> > > > pci_dev_put().
> > >
> > > How about this:
> > >
> > > These functions are hotplug-safe. They increment the reference count on
> > > the pci_dev that they return. You must eventually (possibly at module
> > > unload) decrement the reference count on these devices by calling
> > > pci_dev_put().
> >
> > Great, care to send a patch instead?
> 
> Signed-off-by: Rolf Eike Beer <eike-kernel@sf-tec.de>

Applied, thanks.

greg k-h


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2004-11-19 18:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-11-17 12:34 Documentation/pci.txt inconsistency Rolf Eike Beer
2004-11-17 22:03 ` Greg KH
2004-11-18  9:45   ` Rolf Eike Beer
2004-11-19 18:30     ` Greg KH

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).