diff options
author | Tejun Heo <htejun@gmail.com> | 2007-09-20 03:05:12 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2007-10-12 17:51:11 -0400 |
commit | dc2f75f0e0cac645c22c85bcf429683b3fa0d2d9 (patch) | |
tree | 775a89f5abae0cdc9688a32a6209d74c61cb5975 /fs/sysfs/mount.c | |
parent | d6b4fd2faeb9ddf55ce09cf90b88981e579ee010 (diff) |
sysfs: make sysfs_root a regular directory dirent
sysfs_root is different from a regular directory dirent in that it's
of type SYSFS_ROOT and doesn't have a name. These differences aren't
used by anybody and only adds to complexity. Make sysfs_root a
regular directory dirent.
Signed-off-by: Tejun Heo <htejun@gmail.com>
Acked-by: 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.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/sysfs/mount.c b/fs/sysfs/mount.c index 28bf359981fc..465902c18d31 100644 --- a/fs/sysfs/mount.c +++ b/fs/sysfs/mount.c | |||
@@ -24,8 +24,9 @@ static const struct super_operations sysfs_ops = { | |||
24 | }; | 24 | }; |
25 | 25 | ||
26 | struct sysfs_dirent sysfs_root = { | 26 | struct sysfs_dirent sysfs_root = { |
27 | .s_name = "", | ||
27 | .s_count = ATOMIC_INIT(1), | 28 | .s_count = ATOMIC_INIT(1), |
28 | .s_flags = SYSFS_ROOT, | 29 | .s_flags = SYSFS_DIR, |
29 | .s_mode = S_IFDIR | S_IRWXU | S_IRUGO | S_IXUGO, | 30 | .s_mode = S_IFDIR | S_IRWXU | S_IRUGO | S_IXUGO, |
30 | .s_ino = 1, | 31 | .s_ino = 1, |
31 | }; | 32 | }; |