aboutsummaryrefslogtreecommitdiffstats
path: root/ipc/mqueue.c
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/mqueue.c')
-rw-r--r--ipc/mqueue.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ipc/mqueue.c b/ipc/mqueue.c
index 1511714a9585..0a2a24b6ebe4 100644
--- a/ipc/mqueue.c
+++ b/ipc/mqueue.c
@@ -205,11 +205,11 @@ static int mqueue_fill_super(struct super_block *sb, void *data, int silent)
205 return 0; 205 return 0;
206} 206}
207 207
208static struct super_block *mqueue_get_sb(struct file_system_type *fs_type, 208static int mqueue_get_sb(struct file_system_type *fs_type,
209 int flags, const char *dev_name, 209 int flags, const char *dev_name,
210 void *data) 210 void *data, struct vfsmount *mnt)
211{ 211{
212 return get_sb_single(fs_type, flags, data, mqueue_fill_super); 212 return get_sb_single(fs_type, flags, data, mqueue_fill_super, mnt);
213} 213}
214 214
215static void init_once(void *foo, kmem_cache_t * cachep, unsigned long flags) 215static void init_once(void *foo, kmem_cache_t * cachep, unsigned long flags)