From: Tejun Heo Date: Wed, 13 Jun 2007 18:45:18 +0000 (+0900) Subject: sysfs: fix root sysfs_dirent -> root dentry association X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=0b8ead82f5d9d8f08c0d1236f2e350b70a977753;p=linux-beck.git 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 Signed-off-by: Greg Kroah-Hartman --- 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) iput(inode); return -ENOMEM; } + sysfs_root.s_dentry = root; root->d_fsdata = &sysfs_root; sb->s_root = root; return 0;