From: Darrick J. Wong <darrick.wong@xxxxxxxxxx> Use the correct xfs_db type for dumping free inode btree blocks. Signed-off-by: Darrick J. Wong <darrick.wong@xxxxxxxxxx> --- db/metadump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/metadump.c b/db/metadump.c index 6ecd5685..3cce3012 100644 --- a/db/metadump.c +++ b/db/metadump.c @@ -2607,7 +2607,7 @@ copy_inodes( levels = be32_to_cpu(agi->agi_free_level); finobt = 1; - if (!scan_btree(agno, root, levels, TYP_INOBT, &finobt, + if (!scan_btree(agno, root, levels, TYP_FINOBT, &finobt, scanfunc_ino)) return 0; }