diff options
author | Andrew Morton <akpm@osdl.org> | 2006-06-23 07:01:35 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-23 11:47:27 -0400 |
commit | a5cf4b9a02cb9b8ac16eaafb0fcd7fd24215146e (patch) | |
tree | 3ec6a7706074f0e4c04977fed4944373077b6fd7 /arch/s390/hypfs | |
parent | 138a0128c01899ee8492858a50856b90d0d9d815 (diff) |
[PATCH] s390_hypfs filesystem: get_sb_single() fix
Update hypfs for dhowells API changes.
Cc: Pekka Enberg <penberg@cs.helsinki.fi>
Cc: Ingo Oeser <ioe-lkml@rameria.de>
Cc: Joern Engel <joern@wohnheim.fh-wedel.de>
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
Cc: Michael Holzheu <holzheu@de.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/s390/hypfs')
-rw-r--r-- | arch/s390/hypfs/inode.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/arch/s390/hypfs/inode.c b/arch/s390/hypfs/inode.c index bab560a1357a..18c091925ea5 100644 --- a/arch/s390/hypfs/inode.c +++ b/arch/s390/hypfs/inode.c | |||
@@ -302,11 +302,10 @@ err_alloc: | |||
302 | return rc; | 302 | return rc; |
303 | } | 303 | } |
304 | 304 | ||
305 | static struct super_block *hypfs_get_super(struct file_system_type *fst, | 305 | static int hypfs_get_super(struct file_system_type *fst, int flags, |
306 | int flags, const char *devname, | 306 | const char *devname, void *data, struct vfsmount *mnt) |
307 | void *data) | ||
308 | { | 307 | { |
309 | return get_sb_single(fst, flags, data, hypfs_fill_super); | 308 | return get_sb_single(fst, flags, data, hypfs_fill_super, mnt); |
310 | } | 309 | } |
311 | 310 | ||
312 | static void hypfs_kill_super(struct super_block *sb) | 311 | static void hypfs_kill_super(struct super_block *sb) |