LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Cornelia Huck <cornelia.huck@de.ibm.com>
To: "Dave Young" <hidave.darkstar@gmail.com>
Cc: gregkh@suse.de, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] driver-core : get_device before create/remove sysfs files
Date: Thu, 31 Jan 2008 10:39:38 +0100 [thread overview]
Message-ID: <20080131103938.5c074871@gondolin.boeblingen.de.ibm.com> (raw)
In-Reply-To: <a8e1da0801301717v1ca21bd7y6ecf16065fe34f7d@mail.gmail.com>
On Thu, 31 Jan 2008 09:17:18 +0800,
"Dave Young" <hidave.darkstar@gmail.com> wrote:
> On Jan 30, 2008 6:32 PM, Cornelia Huck <cornelia.huck@de.ibm.com> wrote:
> > On Wed, 30 Jan 2008 09:56:25 +0800,
> > Dave Young <hidave.darkstar@gmail.com> wrote:
> >
> > > get dev reference before create/remove sysfiles, errno fixes as well.
> > >
> > > Signed-off-by: Dave Young <hidave.darkstar@gmail.com>
> > >
> > > ---
> > > drivers/base/core.c | 12 ++++++++----
> > > 1 file changed, 8 insertions(+), 4 deletions(-)
> > >
> > > diff -upr a/drivers/base/core.c b/drivers/base/core.c
> > > --- a/drivers/base/core.c 2008-01-30 09:49:56.000000000 +0800
> > > +++ b/drivers/base/core.c 2008-01-30 09:49:56.000000000 +0800
> > > @@ -414,7 +414,7 @@ struct kset *devices_kset;
> > > */
> > > int device_create_file(struct device *dev, struct device_attribute *attr)
> > > {
> > > - int error = 0;
> > > + int error = -ENODEV;
> >
> > Uhm... why?
>
> In this function :
> if (get_device(dev)) {
> do create issue
> }
> return error
>
> So IMO the initial error should be -ENODEV
If everybody can agree on returning this error in case of dev == NULL,
OK. But please don't mix changing the function's semantics with the
other changes.
>
> >
> > > if (get_device(dev)) {
> > > error = sysfs_create_file(&dev->kobj, &attr->attr);
> > > put_device(dev);
> > > @@ -442,9 +442,11 @@ void device_remove_file(struct device *d
> > > */
> > > int device_create_bin_file(struct device *dev, struct bin_attribute *attr)
> > > {
> > > - int error = -EINVAL;
> > > - if (dev)
> > > + int error = -ENODEV;
> > > + if (get_device(dev)) {
> > > error = sysfs_create_bin_file(&dev->kobj, attr);
> > > + put_device(dev);
> > > + }
> >
> > Why do we need to grab a reference here? If the calling site doesn't
> > hold unto a reference already, something is seriously broken.
>
> First, we should keep consistent with previous function "device_create_file";
I'd rather think that device_create_file() should be changed (see patch
below).
> Second, AFAIK this function mostly are called after something like device_add
> and the dev reference are not hold.
That code holds the reference acquired through device_initialize().
I think we should just get rid of those get/put games:
Driver core: Remove unneeded get_{device,driver}() calls.
Code trying to add/remove attributes must hold a reference to
the device resp. driver anyway, so let's remove those reference
count games.
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
---
drivers/base/core.c | 8 ++------
drivers/base/driver.c | 9 +++------
2 files changed, 5 insertions(+), 12 deletions(-)
--- linux-2.6.orig/drivers/base/core.c
+++ linux-2.6/drivers/base/core.c
@@ -423,10 +423,8 @@ struct kset *devices_kset;
int device_create_file(struct device *dev, struct device_attribute *attr)
{
int error = 0;
- if (get_device(dev)) {
+ if (dev)
error = sysfs_create_file(&dev->kobj, &attr->attr);
- put_device(dev);
- }
return error;
}
@@ -437,10 +435,8 @@ int device_create_file(struct device *de
*/
void device_remove_file(struct device *dev, struct device_attribute *attr)
{
- if (get_device(dev)) {
+ if (dev)
sysfs_remove_file(&dev->kobj, &attr->attr);
- put_device(dev);
- }
}
/**
--- linux-2.6.orig/drivers/base/driver.c
+++ linux-2.6/drivers/base/driver.c
@@ -97,10 +97,9 @@ int driver_create_file(struct device_dri
struct driver_attribute *attr)
{
int error;
- if (get_driver(drv)) {
+ if (drv)
error = sysfs_create_file(&drv->p->kobj, &attr->attr);
- put_driver(drv);
- } else
+ else
error = -EINVAL;
return error;
}
@@ -114,10 +113,8 @@ EXPORT_SYMBOL_GPL(driver_create_file);
void driver_remove_file(struct device_driver *drv,
struct driver_attribute *attr)
{
- if (get_driver(drv)) {
+ if (drv)
sysfs_remove_file(&drv->p->kobj, &attr->attr);
- put_driver(drv);
- }
}
EXPORT_SYMBOL_GPL(driver_remove_file);
prev parent reply other threads:[~2008-01-31 9:39 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-01-30 1:56 Dave Young
2008-01-30 10:32 ` Cornelia Huck
2008-01-31 1:17 ` Dave Young
2008-01-31 9:39 ` Cornelia Huck [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=20080131103938.5c074871@gondolin.boeblingen.de.ibm.com \
--to=cornelia.huck@de.ibm.com \
--cc=gregkh@suse.de \
--cc=hidave.darkstar@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--subject='Re: [PATCH] driver-core : get_device before create/remove sysfs files' \
/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
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).