From fb380cb7606e7e92abc73e1a9bd644e7c88a04a8 Mon Sep 17 00:00:00 2001 From: Dave Chinner Date: Thu, 24 Feb 2011 09:28:26 +1100 Subject: [PATCH] xfs_repair: inode flags check should use flags The RT bitmap inode format flag check should use the flag, not the bit definition. As a result, it is incorrectly detecting inodes with the prealloc flag set as has having an invalid bit set. Signed-off-by: Dave Chinner --- repair/dinode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/repair/dinode.c b/repair/dinode.c index fad15b24a..3a092e4dd 100644 --- a/repair/dinode.c +++ b/repair/dinode.c @@ -2551,11 +2551,11 @@ process_dinode_int(xfs_mount_t *mp, XFS_DIFLAG_RTINHERIT); } } - if (flags & XFS_DIFLAG_NEWRTBM_BIT) { + if (flags & XFS_DIFLAG_NEWRTBM) { /* must be a rt bitmap inode */ if (lino != mp->m_sb.sb_rbmino) { do_warn(_("inode %llu not rt bitmap"), lino); - flags &= ~XFS_DIFLAG_NEWRTBM_BIT; + flags &= ~XFS_DIFLAG_NEWRTBM; } } if (flags & (XFS_DIFLAG_RTINHERIT | -- 2.39.5