[PATCH] VFS: Permit filesystem to override root dentry on mount
[deliverable/linux.git] / fs / jffs / inode-v23.c
index 020cc097c539955b6771412b3d32d9ac291a0494..dd93a091ad67f0bccc9882a9f58907b58bfa2049 100644 (file)
@@ -1785,10 +1785,11 @@ static struct super_operations jffs_ops =
        .remount_fs     = jffs_remount,
 };
 
-static struct super_block *jffs_get_sb(struct file_system_type *fs_type,
-       int flags, const char *dev_name, void *data)
+static int jffs_get_sb(struct file_system_type *fs_type,
+       int flags, const char *dev_name, void *data, struct vfsmount *mnt)
 {
-       return get_sb_bdev(fs_type, flags, dev_name, data, jffs_fill_super);
+       return get_sb_bdev(fs_type, flags, dev_name, data, jffs_fill_super,
+                          mnt);
 }
 
 static struct file_system_type jffs_fs_type = {
This page took 0.086965 seconds and 5 git commands to generate.