diff options
Diffstat (limited to 'arch/ia64')
-rw-r--r-- | arch/ia64/kernel/perfmon.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/arch/ia64/kernel/perfmon.c b/arch/ia64/kernel/perfmon.c index 6b1852f7f972..39e534f5a3b0 100644 --- a/arch/ia64/kernel/perfmon.c +++ b/arch/ia64/kernel/perfmon.c | |||
@@ -618,16 +618,15 @@ pfm_get_unmapped_area(struct file *file, unsigned long addr, unsigned long len, | |||
618 | } | 618 | } |
619 | 619 | ||
620 | 620 | ||
621 | static int | 621 | static struct dentry * |
622 | pfmfs_get_sb(struct file_system_type *fs_type, int flags, const char *dev_name, void *data, | 622 | pfmfs_mount(struct file_system_type *fs_type, int flags, const char *dev_name, void *data) |
623 | struct vfsmount *mnt) | ||
624 | { | 623 | { |
625 | return get_sb_pseudo(fs_type, "pfm:", NULL, PFMFS_MAGIC, mnt); | 624 | return mount_pseudo(fs_type, "pfm:", NULL, PFMFS_MAGIC); |
626 | } | 625 | } |
627 | 626 | ||
628 | static struct file_system_type pfm_fs_type = { | 627 | static struct file_system_type pfm_fs_type = { |
629 | .name = "pfmfs", | 628 | .name = "pfmfs", |
630 | .get_sb = pfmfs_get_sb, | 629 | .mount = pfmfs_mount, |
631 | .kill_sb = kill_anon_super, | 630 | .kill_sb = kill_anon_super, |
632 | }; | 631 | }; |
633 | 632 | ||