aboutsummaryrefslogtreecommitdiffstats
path: root/fs/sysfs/mount.c
diff options
context:
space:
mode:
authorEric W. Biederman <ebiederm@xmission.com>2007-08-20 08:36:30 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2007-10-12 17:51:08 -0400
commit5a26b79c426f8e55ebf7204cb138eb6b1645d4d3 (patch)
tree4cdcd80f88a479a6ed1ef53042f3b17359c0e80e /fs/sysfs/mount.c
parente0712bbfd9cb617fc3a822781c2466fb6b7ede50 (diff)
sysfs: Remove s_dentry
The only uses of s_dentry left are the code that maintains s_dentry and trivial users that don't actually need it. So this patch removes the s_dentry maintenance code and restructures the trivial uses to use something else. Signed-off-by: Eric W. Biederman <ebiederm@xmission.com> Signed-off-by: Tejun Heo <htejun@gmail.com> Cc: Cornelia Huck <cornelia.huck@de.ibm.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'fs/sysfs/mount.c')
-rw-r--r--fs/sysfs/mount.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/sysfs/mount.c b/fs/sysfs/mount.c
index 8989cbb51a39..28bf359981fc 100644
--- a/fs/sysfs/mount.c
+++ b/fs/sysfs/mount.c
@@ -56,7 +56,6 @@ static int sysfs_fill_super(struct super_block *sb, void *data, int silent)
56 iput(inode); 56 iput(inode);
57 return -ENOMEM; 57 return -ENOMEM;
58 } 58 }
59 sysfs_root.s_dentry = root;
60 root->d_fsdata = &sysfs_root; 59 root->d_fsdata = &sysfs_root;
61 sb->s_root = root; 60 sb->s_root = root;
62 return 0; 61 return 0;