projects
/
users
/
hch
/
xfs.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
23b5f30
)
xfs: skip zoned RT inodes in xfs_inodegc_want_queue_rt_file
author
Christoph Hellwig <hch@lst.de>
Sun, 17 Nov 2024 07:02:04 +0000
(08:02 +0100)
committer
Christoph Hellwig <hch@lst.de>
Wed, 26 Feb 2025 01:19:36 +0000
(17:19 -0800)
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>
fs/xfs/xfs_icache.c
patch
|
blob
|
history
diff --git
a/fs/xfs/xfs_icache.c
b/fs/xfs/xfs_icache.c
index c9ded501e89b2e813b99ffef5e4ab661d880ce1e..2f53ca7e12d454d79d5705939d09c1881db7b4cb 100644
(file)
--- a/
fs/xfs/xfs_icache.c
+++ b/
fs/xfs/xfs_icache.c
@@
-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,