Commit fe61f1d7 authored by Jeremy Fitzhardinge's avatar Jeremy Fitzhardinge

xen/xenfs: update xenfs_mount for new prototype

.mount now returns a struct dentry *.
Signed-off-by: default avatarJeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
parent 20b4755e
...@@ -121,9 +121,9 @@ static int xenfs_fill_super(struct super_block *sb, void *data, int silent) ...@@ -121,9 +121,9 @@ static int xenfs_fill_super(struct super_block *sb, void *data, int silent)
return rc; return rc;
} }
static int xenfs_mount(struct file_system_type *fs_type, static struct dentry *xenfs_mount(struct file_system_type *fs_type,
int flags, const char *dev_name, int flags, const char *dev_name,
void *data) void *data)
{ {
return mount_single(fs_type, flags, data, xenfs_fill_super); return mount_single(fs_type, flags, data, xenfs_fill_super);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment