aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/xen
diff options
context:
space:
mode:
authorJeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>2010-11-16 14:06:46 -0500
committerJeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>2010-11-16 14:06:46 -0500
commitfe61f1d737f7804e0bd440ace9724e669e2c2906 (patch)
treebe4c179d2d8c84ab104c5da499a275eeb3adb70d /drivers/xen
parent20b4755e4fbb226eb42951bd40b53fcbce9ef944 (diff)
xen/xenfs: update xenfs_mount for new prototype
.mount now returns a struct dentry *. Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Diffstat (limited to 'drivers/xen')
-rw-r--r--drivers/xen/xenfs/super.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/xen/xenfs/super.c b/drivers/xen/xenfs/super.c
index f6339d11d59c..990ee42167a1 100644
--- a/drivers/xen/xenfs/super.c
+++ b/drivers/xen/xenfs/super.c
@@ -121,9 +121,9 @@ static int xenfs_fill_super(struct super_block *sb, void *data, int silent)
121 return rc; 121 return rc;
122} 122}
123 123
124static int xenfs_mount(struct file_system_type *fs_type, 124static struct dentry *xenfs_mount(struct file_system_type *fs_type,
125 int flags, const char *dev_name, 125 int flags, const char *dev_name,
126 void *data) 126 void *data)
127{ 127{
128 return mount_single(fs_type, flags, data, xenfs_fill_super); 128 return mount_single(fs_type, flags, data, xenfs_fill_super);
129} 129}