summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Le Moal <dlemoal@kernel.org>2026-03-16 14:40:18 +0300
committerCarlos Maiolino <cem@kernel.org>2026-03-18 12:08:07 +0300
commit6a82a691b08070ad03b237d7db89aa0bfef389e2 (patch)
tree9c8426dc303ad427566152f1674fed1608719376
parent770323d418ed5848cc21af172f77377b2cc0542d (diff)
downloadlinux-6a82a691b08070ad03b237d7db89aa0bfef389e2.tar.xz
xfs: fix a comment typo in xfs_select_zone_nowait()
Fix a typo in the comment describing the second call to xfs_select_open_zone_lru() in xfs_select_zone_nowait(). Signed-off-by: Damien Le Moal <dlemoal@kernel.org> Reviewed-by: Hans Holmberg <hans.holmberg@wdc.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Carlos Maiolino <cem@kernel.org>
-rw-r--r--fs/xfs/xfs_zone_alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_zone_alloc.c b/fs/xfs/xfs_zone_alloc.c
index 612fcafd3a0c..06e2cb79030e 100644
--- a/fs/xfs/xfs_zone_alloc.c
+++ b/fs/xfs/xfs_zone_alloc.c
@@ -693,7 +693,7 @@ xfs_select_zone_nowait(
goto out_unlock;
/*
- * Try to find an zone that is an ok match to colocate data with.
+ * Try to find a zone that is an ok match to colocate data with.
*/
oz = xfs_select_open_zone_lru(zi, write_hint, XFS_ZONE_ALLOC_OK);
if (oz)