aboutsummaryrefslogtreecommitdiffstats
path: root/fs/sysfs/mount.c
diff options
context:
space:
mode:
authorTejun Heo <htejun@gmail.com>2007-06-13 14:45:18 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2007-07-11 19:09:07 -0400
commit0b8ead82f5d9d8f08c0d1236f2e350b70a977753 (patch)
treed725dd9ee12498c84e5efd9da23c9170d3e3400e /fs/sysfs/mount.c
parent8312a8d7c1d19d31027bd4ca127ce671962c23d4 (diff)
sysfs: fix root sysfs_dirent -> root dentry association
The root sysfs_dirent didn't point to the root dentry fix it. Signed-off-by: Tejun Heo <htejun@gmail.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, 1 insertions, 0 deletions
diff --git a/fs/sysfs/mount.c b/fs/sysfs/mount.c
index 6d3a6249d21c..d0e160307c5d 100644
--- a/fs/sysfs/mount.c
+++ b/fs/sysfs/mount.c
@@ -65,6 +65,7 @@ static int sysfs_fill_super(struct super_block *sb, void *data, int silent)
65 iput(inode); 65 iput(inode);
66 return -ENOMEM; 66 return -ENOMEM;
67 } 67 }
68 sysfs_root.s_dentry = root;
68 root->d_fsdata = &sysfs_root; 69 root->d_fsdata = &sysfs_root;
69 sb->s_root = root; 70 sb->s_root = root;
70 return 0; 71 return 0;