aboutsummaryrefslogtreecommitdiffstats
path: root/fs/sysfs/symlink.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:07 -0400
commit7d0c7d676cc066413e1583b5af9fba8011972d41 (patch)
tree0afe89f9eca5e1e0ff31f5409a3568991cfceda2 /fs/sysfs/symlink.c
parent0333cd8a3f4249fde2c50929a6eac35245fc685b (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/symlink.c')
-rw-r--r--fs/sysfs/symlink.c7
1 files changed, 3 insertions, 4 deletions
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;