Skip to content

Commit

Permalink
[PATCH] s390_hypfs filesystem: get_sb_single() fix
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Andrew Morton authored and Linus Torvalds committed Jun 23, 2006
1 parent 138a012 commit a5cf4b9
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions arch/s390/hypfs/inode.c
Original file line number Diff line number Diff line change
@@ -302,11 +302,10 @@ static int hypfs_fill_super(struct super_block *sb, void *data, int silent)
return rc;
}

static struct super_block *hypfs_get_super(struct file_system_type *fst,
int flags, const char *devname,
void *data)
static int hypfs_get_super(struct file_system_type *fst, int flags,
const char *devname, void *data, struct vfsmount *mnt)
{
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)

0 comments on commit a5cf4b9

Please sign in to comment.