From: Darrick J. Wong Date: Fri, 15 Jul 2022 21:34:50 +0000 (-0700) Subject: xfs_repair: allow realtime files to have the reflink flag set X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=804bfe51b739454c66a6ed95fc9e40a1fa6c40ea;p=users%2Fhch%2Fxfsprogs.git xfs_repair: allow realtime files to have the reflink flag set Now that we allow reflink on the realtime volume, allow that combination of inode flags if the feature's enabled. Note that we now allow inodes to have rtinherit even if there's no realtime volume, since the kernel has never restricted that. Signed-off-by: Darrick J. Wong --- diff --git a/repair/dinode.c b/repair/dinode.c index f0c0ba4da..2b254b29c 100644 --- a/repair/dinode.c +++ b/repair/dinode.c @@ -3199,7 +3199,8 @@ _("bad (negative) size %" PRId64 " on inode %" PRIu64 "\n"), } if ((flags2 & XFS_DIFLAG2_REFLINK) && - (flags & (XFS_DIFLAG_REALTIME | XFS_DIFLAG_RTINHERIT))) { + !xfs_has_rtreflink(mp) && + (flags & XFS_DIFLAG_REALTIME)) { if (!uncertain) { do_warn( _("Cannot have a reflinked realtime inode %" PRIu64 "\n"), @@ -3231,7 +3232,8 @@ _("bad (negative) size %" PRId64 " on inode %" PRIu64 "\n"), } if ((flags2 & XFS_DIFLAG2_COWEXTSIZE) && - (flags & (XFS_DIFLAG_REALTIME | XFS_DIFLAG_RTINHERIT))) { + !xfs_has_rtreflink(mp) && + (flags & XFS_DIFLAG_REALTIME)) { if (!uncertain) { do_warn( _("Cannot have CoW extent size hint on a realtime inode %" PRIu64 "\n"),