Merge tag 'for-linus-3.4' of git://git.infradead.org/mtd-2.6
[firefly-linux-kernel-4.4.55.git] / fs / jffs2 / fs.c
index 43052faa94e18d349874055034226a048001c57e..bb6f993ebca924dd39471163b586ded206096f62 100644 (file)
@@ -572,10 +572,10 @@ int jffs2_do_fill_super(struct super_block *sb, void *data, int silent)
 
        ret = -ENOMEM;
 
-       jffs2_dbg(1, "%s(): d_alloc_root()\n", __func__);
-       sb->s_root = d_alloc_root(root_i);
+       jffs2_dbg(1, "%s(): d_make_root()\n", __func__);
+       sb->s_root = d_make_root(root_i);
        if (!sb->s_root)
-               goto out_root_i;
+               goto out_root;
 
        sb->s_maxbytes = 0xFFFFFFFF;
        sb->s_blocksize = PAGE_CACHE_SIZE;
@@ -585,8 +585,6 @@ int jffs2_do_fill_super(struct super_block *sb, void *data, int silent)
                jffs2_start_garbage_collect_thread(c);
        return 0;
 
- out_root_i:
-       iput(root_i);
 out_root:
        jffs2_free_ino_caches(c);
        jffs2_free_raw_node_refs(c);