[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>
This commit is contained in:
committed by
Linus Torvalds
parent
138a0128c0
commit
a5cf4b9a02
@@ -302,11 +302,10 @@ err_alloc:
|
|||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct super_block *hypfs_get_super(struct file_system_type *fst,
|
static int hypfs_get_super(struct file_system_type *fst, int flags,
|
||||||
int flags, const char *devname,
|
const char *devname, void *data, struct vfsmount *mnt)
|
||||||
void *data)
|
|
||||||
{
|
{
|
||||||
return get_sb_single(fst, flags, data, hypfs_fill_super);
|
return get_sb_single(fst, flags, data, hypfs_fill_super, mnt);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void hypfs_kill_super(struct super_block *sb)
|
static void hypfs_kill_super(struct super_block *sb)
|
||||||
|
Reference in New Issue
Block a user