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: Christoph Hellwig <hch@lst.de> Reviewed-by: "Darrick J. Wong" <djwong@kernel.org>
This commit is contained in:
+1
-1
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user