aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
Diffstat (limited to 'arch')
-rw-r--r--arch/ia64/kernel/perfmon.c7
-rw-r--r--arch/powerpc/platforms/cell/spufs/inode.c6
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
598static struct super_block * 598static int
599pfmfs_get_sb(struct file_system_type *fs_type, int flags, const char *dev_name, void *data) 599pfmfs_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
604static struct file_system_type pfm_fs_type = { 605static 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
439static struct super_block * 439static int
440spufs_get_sb(struct file_system_type *fstype, int flags, 440spufs_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
446static struct file_system_type spufs_type = { 446static struct file_system_type spufs_type = {