{
        struct f2fs_sb_info *sbi = F2FS_SB(sb);
        int i;
+       int err = 0;
        bool done;
 
        /* unregister procfs/sysfs entries in advance to avoid race case */
                struct cp_control cpc = {
                        .reason = CP_UMOUNT,
                };
-               f2fs_write_checkpoint(sbi, &cpc);
+               err = f2fs_write_checkpoint(sbi, &cpc);
        }
 
        /* be sure to wait for any on-going discard commands */
                struct cp_control cpc = {
                        .reason = CP_UMOUNT | CP_TRIMMED,
                };
-               f2fs_write_checkpoint(sbi, &cpc);
+               err = f2fs_write_checkpoint(sbi, &cpc);
        }
 
        /*
 
        f2fs_wait_on_all_pages(sbi, F2FS_WB_CP_DATA);
 
+       if (err) {
+               truncate_inode_pages_final(NODE_MAPPING(sbi));
+               truncate_inode_pages_final(META_MAPPING(sbi));
+       }
+
+       for (i = 0; i < NR_COUNT_TYPE; i++) {
+               if (!get_pages(sbi, i))
+                       continue;
+               f2fs_err(sbi, "detect filesystem reference count leak during "
+                       "umount, type: %d, count: %lld", i, get_pages(sbi, i));
+               f2fs_bug_on(sbi, 1);
+       }
+
        f2fs_bug_on(sbi, sbi->fsync_node_num);
 
        f2fs_destroy_compress_inode(sbi);