summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2024-02-19 07:27:28 +0100
committerChandan Babu R <chandanbabu@kernel.org>2024-02-21 11:36:55 +0530
commitb2fdfe19dfd70ba047ab720eb52f00651ef8a5cd (patch)
treedcf09430b942139dfa0526b9128b8a21fa7ab28a
parentfd3d46e630404202c1d577481fafd2c8993874f3 (diff)
xfs: fix a comment in xfarray.c
xfiles are shmem files, not memfds. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: "Darrick J. Wong" <djwong@kernel.org> Signed-off-by: Chandan Babu R <chandanbabu@kernel.org>
-rw-r--r--fs/xfs/scrub/xfarray.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/scrub/xfarray.c b/fs/xfs/scrub/xfarray.c
index 82b2a35a8e86..379e1db22269 100644
--- a/fs/xfs/scrub/xfarray.c
+++ b/fs/xfs/scrub/xfarray.c
@@ -16,7 +16,7 @@
* Large Arrays of Fixed-Size Records
* ==================================
*
- * This memory array uses an xfile (which itself is a memfd "file") to store
+ * This memory array uses an xfile (which itself is a shmem file) to store
* large numbers of fixed-size records in memory that can be paged out. This
* puts less stress on the memory reclaim algorithms during an online repair
* because we don't have to pin so much memory. However, array access is less