diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2010-02-12 19:22:27 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-03-07 17:04:52 -0800 |
commit | fac2622bbad4d7e3a32c53e631e018b80ec631dc (patch) | |
tree | 42e4ad2b38c6d40c86eabaff5efff2b0adeb0b40 /fs/sysfs/sysfs.h | |
parent | 2354dcc7218853a6537ec722be40fde9a11c413b (diff) | |
download | linux-fac2622bbad4d7e3a32c53e631e018b80ec631dc.tar.gz linux-fac2622bbad4d7e3a32c53e631e018b80ec631dc.tar.bz2 linux-fac2622bbad4d7e3a32c53e631e018b80ec631dc.zip |
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/sysfs.h')
-rw-r--r-- | fs/sysfs/sysfs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/sysfs/sysfs.h b/fs/sysfs/sysfs.h index 5a3192a08442..7593d71d92f8 100644 --- a/fs/sysfs/sysfs.h +++ b/fs/sysfs/sysfs.h @@ -172,7 +172,7 @@ static inline void __sysfs_put(struct sysfs_dirent *sd) /* * inode.c */ -struct inode *sysfs_get_inode(struct sysfs_dirent *sd); +struct inode *sysfs_get_inode(struct super_block *sb, struct sysfs_dirent *sd); void sysfs_delete_inode(struct inode *inode); int sysfs_sd_setattr(struct sysfs_dirent *sd, struct iattr *iattr); int sysfs_permission(struct inode *inode, int mask); |