diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2010-07-25 15:47:46 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2010-10-29 04:16:33 -0400 |
commit | 51139adac92f7160ad3ca1cab2de1b4b8d19dc96 (patch) | |
tree | ea12df0927809e8d5333e82d51cbdb96288c9e6b /arch/ia64 | |
parent | 3c26ff6e499ee7e6f9f2bc7da5f2f30d80862ecf (diff) |
convert get_sb_pseudo() users
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
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 | ||