f2fs: fix to do sanity check in is_alive()
[linux-2.6-microblaze.git] / fs / f2fs / gc.c
index 3e64b23..b538cbc 100644 (file)
@@ -1026,6 +1026,9 @@ static bool is_alive(struct f2fs_sb_info *sbi, struct f2fs_summary *sum,
                set_sbi_flag(sbi, SBI_NEED_FSCK);
        }
 
+       if (f2fs_check_nid_range(sbi, dni->ino))
+               return false;
+
        *nofs = ofs_of_node(node_page);
        source_blkaddr = data_blkaddr(NULL, node_page, ofs_in_node);
        f2fs_put_page(node_page, 1);