diff options
author | Roberto Sassu <roberto.sassu@polito.it> | 2010-06-03 11:58:28 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-07-05 11:22:50 -0700 |
commit | a293c6c6ad7bf4e99a16d43e80cf4e91c8fb2a41 (patch) | |
tree | 173feb433459af1416aca17653c4c68922605e1f /fs | |
parent | 853ac1cddf0603e4a7a61110b96867cc0c3fd59d (diff) |
wrong type for 'magic' argument in simple_fill_super()
commit 7d683a09990ff095a91b6e724ecee0ff8733274a upstream.
It's used to superblock ->s_magic, which is unsigned long.
Signed-off-by: Roberto Sassu <roberto.sassu@polito.it>
Reviewed-by: Mimi Zohar <zohar@us.ibm.com>
Signed-off-by: Eric Paris <eparis@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/libfs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/libfs.c b/fs/libfs.c index ea9a6cc9b35..b016af912ff 100644 --- a/fs/libfs.c +++ b/fs/libfs.c @@ -418,7 +418,8 @@ int simple_write_end(struct file *file, struct address_space *mapping, * unique inode values later for this filesystem, then you must take care * to pass it an appropriate max_reserved value to avoid collisions. */ -int simple_fill_super(struct super_block *s, int magic, struct tree_descr *files) +int simple_fill_super(struct super_block *s, unsigned long magic, + struct tree_descr *files) { struct inode *inode; struct dentry *root; |