Commit 0cb53d77 authored by Christoph Hellwig's avatar Christoph Hellwig
Browse files

xfs: skip zoned RT inodes in xfs_inodegc_want_queue_rt_file



The zoned allocator never performs speculative preallocations, so don't
bother queueing up zoned inodes here.

Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
Reviewed-by: default avatar"Darrick J. Wong" <djwong@kernel.org>
parent fc04408c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2073,7 +2073,7 @@ xfs_inodegc_want_queue_rt_file(
{
	struct xfs_mount	*mp = ip->i_mount;

	if (!XFS_IS_REALTIME_INODE(ip))
	if (!XFS_IS_REALTIME_INODE(ip) || xfs_has_zoned(mp))
		return false;

	if (xfs_compare_freecounter(mp, XC_FREE_RTEXTENTS,