zoned file systems can have COW forks even without reflinks. Signed-off-by: Christoph Hellwig <hch@xxxxxx> --- fs/xfs/scrub/bmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/xfs/scrub/bmap.c b/fs/xfs/scrub/bmap.c index 66da7d4d56ba..cfc6f035ecaa 100644 --- a/fs/xfs/scrub/bmap.c +++ b/fs/xfs/scrub/bmap.c @@ -1039,7 +1039,7 @@ xchk_bmap( switch (whichfork) { case XFS_COW_FORK: /* No CoW forks on non-reflink filesystems. */ - if (!xfs_has_reflink(mp)) { + if (!xfs_has_reflink(mp) && !xfs_has_zoned(mp)) { xchk_ino_set_corrupt(sc, sc->ip->i_ino); return 0; } -- 2.45.2