* [PATCH 2.6] Fix dentry refcounting in sysfs_remove_group()
@ 2004-02-17 7:24 Maneesh Soni
0 siblings, 0 replies; only message in thread
From: Maneesh Soni @ 2004-02-17 7:24 UTC (permalink / raw)
To: Greg KH, Al Viro; +Cc: Andrew Morton, Dipankar Sarma, LKML
Hello,
Please review the following patch fixing the dentry refcounting during
sysfs_remove_group().
Thanks
Maneesh
o The following patch fixes the dentry refcounting, during sysfs_remove_group()
and also adds the missing dput() for the "extra" ref taken during
sysfs_create() for the sub-directory dentry corresponding to attribute group.
fs/sysfs/dir.c | 2 ++
fs/sysfs/group.c | 5 +++--
2 files changed, 5 insertions(+), 2 deletions(-)
diff -puN fs/sysfs/dir.c~sysfs_remove_subdir-dentry-leak-fix fs/sysfs/dir.c
--- linux-2.6.3-rc4/fs/sysfs/dir.c~sysfs_remove_subdir-dentry-leak-fix 2004-02-17 11:48:24.000000000 +0530
+++ linux-2.6.3-rc4-maneesh/fs/sysfs/dir.c 2004-02-17 11:54:11.000000000 +0530
@@ -96,6 +96,8 @@ static void remove_dir(struct dentry * d
void sysfs_remove_subdir(struct dentry * d)
{
remove_dir(d);
+ /* release the "extra" ref taken during sysfs_create() */
+ dput(d);
}
diff -puN fs/sysfs/group.c~sysfs_remove_subdir-dentry-leak-fix fs/sysfs/group.c
--- linux-2.6.3-rc4/fs/sysfs/group.c~sysfs_remove_subdir-dentry-leak-fix 2004-02-17 11:48:59.000000000 +0530
+++ linux-2.6.3-rc4-maneesh/fs/sysfs/group.c 2004-02-17 11:49:37.000000000 +0530
@@ -68,12 +68,13 @@ void sysfs_remove_group(struct kobject *
if (grp->name)
dir = sysfs_get_dentry(kobj->dentry,grp->name);
else
- dir = kobj->dentry;
+ dir = dget(kobj->dentry);
remove_files(dir,grp);
- dput(dir);
if (grp->name)
sysfs_remove_subdir(dir);
+ /* release the ref. taken in this routine */
+ dput(dir);
}
_
--
Maneesh Soni
Linux Technology Center,
IBM Software Lab, Bangalore, India
email: maneesh@in.ibm.com
Phone: 91-80-25044999 Fax: 91-80-5268553
T/L : 9243696
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2004-02-17 7:21 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-02-17 7:24 [PATCH 2.6] Fix dentry refcounting in sysfs_remove_group() Maneesh Soni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®