Print block address of unreachable node id in fsck_verify() for better debugging.
Signed-off-by: Chao Yu <yuch...@huawei.com> --- fsck/fsck.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/fsck/fsck.c b/fsck/fsck.c index bb1da0305f2c..20a569228516 100644 --- a/fsck/fsck.c +++ b/fsck/fsck.c @@ -2507,7 +2507,11 @@ int fsck_verify(struct f2fs_sb_info *sbi) for (i = 0; i < fsck->nr_nat_entries; i++) { if (f2fs_test_bit(i, fsck->nat_area_bitmap) != 0) { - printf("NID[0x%x] is unreachable\n", i); + struct node_info ni; + + get_node_info(sbi, i, &ni); + printf("NID[0x%x] is unreachable, blkaddr:0x%x\n", + i, ni.blk_addr); nr_unref_nid++; } } -- 2.18.0.rc1 ------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot _______________________________________________ Linux-f2fs-devel mailing list Linux-f2fs-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel