All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] XArray: handle XA_FLAGS_ACCOUNT in xas_split_alloc
@ 2022-05-25  8:26 Vasily Averin
  2022-05-27  1:21 ` Matthew Wilcox
  0 siblings, 1 reply; 7+ messages in thread
From: Vasily Averin @ 2022-05-25  8:26 UTC (permalink / raw)
  To: Matthew Wilcox; +Cc: kernel, linux-kernel, linux-fsdevel

Commit 7b785645e8f1 ("mm: fix page cache convergence regression")
added support of new XA_FLAGS_ACCOUNT flag into all Xarray allocation
functions. Later commit 8fc75643c5e1 ("XArray: add xas_split")
introduced xas_split_alloc() but missed about XA_FLAGS_ACCOUNT
processing.

Signed-off-by: Vasily Averin <vvs@openvz.org>
---
 lib/xarray.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/xarray.c b/lib/xarray.c
index 54e646e8e6ee..5f5b42e6f842 100644
--- a/lib/xarray.c
+++ b/lib/xarray.c
@@ -1013,6 +1013,8 @@ void xas_split_alloc(struct xa_state *xas, void *entry, unsigned int order,
 	if (xas->xa_shift + XA_CHUNK_SHIFT > order)
 		return;
 
+	if (xas->xa->xa_flags & XA_FLAGS_ACCOUNT)
+		gfp |= __GFP_ACCOUNT;
 	do {
 		unsigned int i;
 		void *sibling = NULL;
-- 
2.31.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2022-05-27 17:48 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-25  8:26 [PATCH] XArray: handle XA_FLAGS_ACCOUNT in xas_split_alloc Vasily Averin
2022-05-27  1:21 ` Matthew Wilcox
2022-05-27  1:40   ` Shakeel Butt
     [not found]     ` <CALvZod7iyO5Ti5xhzq36UjDFNAmfEyPk1MQv_t4kUHKuPCeNng-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-05-27 11:22       ` Vasily Averin
2022-05-27 11:22         ` Vasily Averin
     [not found]         ` <d4e81087-d057-4edb-5df0-47d99a1c72d9-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org>
2022-05-27 17:47           ` Roman Gushchin
2022-05-27 17:47             ` Roman Gushchin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.