diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/ia64/kernel/perfmon.c | 7 | ||||
-rw-r--r-- | arch/powerpc/platforms/cell/spufs/inode.c | 6 |
2 files changed, 7 insertions, 6 deletions
diff --git a/arch/ia64/kernel/perfmon.c b/arch/ia64/kernel/perfmon.c index 077f21216b65..2359e2809f50 100644 --- a/arch/ia64/kernel/perfmon.c +++ b/arch/ia64/kernel/perfmon.c | |||
@@ -595,10 +595,11 @@ pfm_get_unmapped_area(struct file *file, unsigned long addr, unsigned long len, | |||
595 | } | 595 | } |
596 | 596 | ||
597 | 597 | ||
598 | static struct super_block * | 598 | static int |
599 | pfmfs_get_sb(struct file_system_type *fs_type, int flags, const char *dev_name, void *data) | 599 | pfmfs_get_sb(struct file_system_type *fs_type, int flags, const char *dev_name, void *data, |
600 | struct vfsmount *mnt) | ||
600 | { | 601 | { |
601 | return get_sb_pseudo(fs_type, "pfm:", NULL, PFMFS_MAGIC); | 602 | return get_sb_pseudo(fs_type, "pfm:", NULL, PFMFS_MAGIC, mnt); |
602 | } | 603 | } |
603 | 604 | ||
604 | static struct file_system_type pfm_fs_type = { | 605 | static struct file_system_type pfm_fs_type = { |
diff --git a/arch/powerpc/platforms/cell/spufs/inode.c b/arch/powerpc/platforms/cell/spufs/inode.c index 1987697b23a0..7b4572805db9 100644 --- a/arch/powerpc/platforms/cell/spufs/inode.c +++ b/arch/powerpc/platforms/cell/spufs/inode.c | |||
@@ -436,11 +436,11 @@ spufs_fill_super(struct super_block *sb, void *data, int silent) | |||
436 | return spufs_create_root(sb, data); | 436 | return spufs_create_root(sb, data); |
437 | } | 437 | } |
438 | 438 | ||
439 | static struct super_block * | 439 | static int |
440 | spufs_get_sb(struct file_system_type *fstype, int flags, | 440 | spufs_get_sb(struct file_system_type *fstype, int flags, |
441 | const char *name, void *data) | 441 | const char *name, void *data, struct vfsmount *mnt) |
442 | { | 442 | { |
443 | return get_sb_single(fstype, flags, data, spufs_fill_super); | 443 | return get_sb_single(fstype, flags, data, spufs_fill_super, mnt); |
444 | } | 444 | } |
445 | 445 | ||
446 | static struct file_system_type spufs_type = { | 446 | static struct file_system_type spufs_type = { |