diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2007-08-20 08:36:30 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2007-10-12 17:51:07 -0400 |
commit | 7d0c7d676cc066413e1583b5af9fba8011972d41 (patch) | |
tree | 0afe89f9eca5e1e0ff31f5409a3568991cfceda2 /fs/sysfs | |
parent | 0333cd8a3f4249fde2c50929a6eac35245fc685b (diff) |
sysfs: Make sysfs_mount static
This patch modifies the users of sysfs_mount to use sysfs_root
instead (which is what they are looking for). It then
makes sysfs_mount static to keep people from using it
by accident.
The net result is slightly faster and cleaner code.
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')
-rw-r--r-- | fs/sysfs/dir.c | 4 | ||||
-rw-r--r-- | fs/sysfs/mount.c | 2 | ||||
-rw-r--r-- | fs/sysfs/symlink.c | 7 | ||||
-rw-r--r-- | fs/sysfs/sysfs.h | 1 |
4 files changed, 5 insertions, 9 deletions
diff --git a/fs/sysfs/dir.c b/fs/sysfs/dir.c index 739dda176b43..7f4abe176701 100644 --- a/fs/sysfs/dir.c +++ b/fs/sysfs/dir.c | |||
@@ -737,10 +737,8 @@ int sysfs_create_dir(struct kobject * kobj) | |||
737 | 737 | ||
738 | if (kobj->parent) | 738 | if (kobj->parent) |
739 | parent_sd = kobj->parent->sd; | 739 | parent_sd = kobj->parent->sd; |
740 | else if (sysfs_mount && sysfs_mount->mnt_sb) | ||
741 | parent_sd = sysfs_mount->mnt_sb->s_root->d_fsdata; | ||
742 | else | 740 | else |
743 | return -EFAULT; | 741 | parent_sd = &sysfs_root; |
744 | 742 | ||
745 | error = create_dir(kobj, parent_sd, kobject_name(kobj), &sd); | 743 | error = create_dir(kobj, parent_sd, kobject_name(kobj), &sd); |
746 | if (!error) | 744 | if (!error) |
diff --git a/fs/sysfs/mount.c b/fs/sysfs/mount.c index ac7625631fcf..8989cbb51a39 100644 --- a/fs/sysfs/mount.c +++ b/fs/sysfs/mount.c | |||
@@ -14,7 +14,7 @@ | |||
14 | /* Random magic number */ | 14 | /* Random magic number */ |
15 | #define SYSFS_MAGIC 0x62656572 | 15 | #define SYSFS_MAGIC 0x62656572 |
16 | 16 | ||
17 | struct vfsmount *sysfs_mount; | 17 | static struct vfsmount *sysfs_mount; |
18 | struct super_block * sysfs_sb = NULL; | 18 | struct super_block * sysfs_sb = NULL; |
19 | struct kmem_cache *sysfs_dir_cachep; | 19 | struct kmem_cache *sysfs_dir_cachep; |
20 | 20 | ||
diff --git a/fs/sysfs/symlink.c b/fs/sysfs/symlink.c index a6b13f12b0e7..8ad38bccc0e4 100644 --- a/fs/sysfs/symlink.c +++ b/fs/sysfs/symlink.c | |||
@@ -60,10 +60,9 @@ int sysfs_create_link(struct kobject * kobj, struct kobject * target, const char | |||
60 | 60 | ||
61 | BUG_ON(!name); | 61 | BUG_ON(!name); |
62 | 62 | ||
63 | if (!kobj) { | 63 | if (!kobj) |
64 | if (sysfs_mount && sysfs_mount->mnt_sb) | 64 | parent_sd = &sysfs_root; |
65 | parent_sd = sysfs_mount->mnt_sb->s_root->d_fsdata; | 65 | else |
66 | } else | ||
67 | parent_sd = kobj->sd; | 66 | parent_sd = kobj->sd; |
68 | 67 | ||
69 | error = -EFAULT; | 68 | error = -EFAULT; |
diff --git a/fs/sysfs/sysfs.h b/fs/sysfs/sysfs.h index 8a0aea1ab86d..77253aabc4af 100644 --- a/fs/sysfs/sysfs.h +++ b/fs/sysfs/sysfs.h | |||
@@ -51,7 +51,6 @@ struct sysfs_addrm_cxt { | |||
51 | int cnt; | 51 | int cnt; |
52 | }; | 52 | }; |
53 | 53 | ||
54 | extern struct vfsmount * sysfs_mount; | ||
55 | extern struct sysfs_dirent sysfs_root; | 54 | extern struct sysfs_dirent sysfs_root; |
56 | extern struct kmem_cache *sysfs_dir_cachep; | 55 | extern struct kmem_cache *sysfs_dir_cachep; |
57 | 56 | ||