aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ia64/kernel
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2010-07-25 15:47:46 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2010-10-29 04:16:33 -0400
commit51139adac92f7160ad3ca1cab2de1b4b8d19dc96 (patch)
treeea12df0927809e8d5333e82d51cbdb96288c9e6b /arch/ia64/kernel
parent3c26ff6e499ee7e6f9f2bc7da5f2f30d80862ecf (diff)
convert get_sb_pseudo() users
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/ia64/kernel')
-rw-r--r--arch/ia64/kernel/perfmon.c9
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
621static int 621static struct dentry *
622pfmfs_get_sb(struct file_system_type *fs_type, int flags, const char *dev_name, void *data, 622pfmfs_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
628static struct file_system_type pfm_fs_type = { 627static 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