diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2010-02-12 22:22:27 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-03-07 20:04:52 -0500 |
commit | fac2622bbad4d7e3a32c53e631e018b80ec631dc (patch) | |
tree | 42e4ad2b38c6d40c86eabaff5efff2b0adeb0b40 /fs/sysfs/dir.c | |
parent | 2354dcc7218853a6537ec722be40fde9a11c413b (diff) |
sysfs: Pass super_block to sysfs_get_inode
Currently sysfs_get_inode magically returns an inode on
sysfs_sb. Make the super_block parameter explicit and
the code becomes clearer.
Acked-by: Tejun Heo <tj@kernel.org>
Acked-by: Serge Hallyn <serue@us.ibm.com>
Signed-off-by: Eric W. Biederman <ebiederm@aristanetworks.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'fs/sysfs/dir.c')
-rw-r--r-- | fs/sysfs/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/sysfs/dir.c b/fs/sysfs/dir.c index 481fdec09f4e..590717861c7a 100644 --- a/fs/sysfs/dir.c +++ b/fs/sysfs/dir.c | |||
@@ -645,7 +645,7 @@ static struct dentry * sysfs_lookup(struct inode *dir, struct dentry *dentry, | |||
645 | } | 645 | } |
646 | 646 | ||
647 | /* attach dentry and inode */ | 647 | /* attach dentry and inode */ |
648 | inode = sysfs_get_inode(sd); | 648 | inode = sysfs_get_inode(dir->i_sb, sd); |
649 | if (!inode) { | 649 | if (!inode) { |
650 | ret = ERR_PTR(-ENOMEM); | 650 | ret = ERR_PTR(-ENOMEM); |
651 | goto out_unlock; | 651 | goto out_unlock; |