From 61a155678aa65f5191c78d0025730b3efab36740 Mon Sep 17 00:00:00 2001 From: Eric Sandeen Date: Fri, 4 Aug 2017 16:33:45 -0500 Subject: [PATCH] xfs_db: associate proper type with free inode btree root When navigating to the free inode btree root, the wrong type is set: xfs_db> agi 0 xfs_db> addr free_root xfs_db> type current type is "inobt" Change this to type finobt / TYP_FINOBT (There seems to be no actual difference, but if we have an explicit type name for the free inode btree, we should use it as appropriate) Signed-off-by: Eric Sandeen Reviewed-by: Darrick J. Wong Signed-off-by: Eric Sandeen --- db/agi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/agi.c b/db/agi.c index 285a3c5fc..fb69210be 100644 --- a/db/agi.c +++ b/db/agi.c @@ -57,7 +57,7 @@ const field_t agi_flds[] = { { "uuid", FLDT_UUID, OI(OFF(uuid)), C1, 0, TYP_NONE }, { "lsn", FLDT_UINT64X, OI(OFF(lsn)), C1, 0, TYP_NONE }, { "crc", FLDT_CRC, OI(OFF(crc)), C1, 0, TYP_NONE }, - { "free_root", FLDT_AGBLOCK, OI(OFF(free_root)), C1, 0, TYP_INOBT }, + { "free_root", FLDT_AGBLOCK, OI(OFF(free_root)), C1, 0, TYP_FINOBT }, { "free_level", FLDT_UINT32D, OI(OFF(free_level)), C1, 0, TYP_NONE }, { NULL } }; -- 2.47.2