* [merged] maple_tree-remove-redundant-__gfp_nowarn.patch removed from -mm tree
@ 2025-09-04 21:36 Andrew Morton
0 siblings, 0 replies; only message in thread
From: Andrew Morton @ 2025-09-04 21:36 UTC (permalink / raw)
To: mm-commits, willy, richard.weiyang, Liam.Howlett, rongqianfeng,
akpm
The quilt patch titled
Subject: maple_tree: remove redundant __GFP_NOWARN
has been removed from the -mm tree. Its filename was
maple_tree-remove-redundant-__gfp_nowarn.patch
This patch was dropped because it was merged into mainline or a subsystem tree
------------------------------------------------------
From: Qianfeng Rong <rongqianfeng@vivo.com>
Subject: maple_tree: remove redundant __GFP_NOWARN
Date: Mon, 4 Aug 2025 20:56:57 +0800
Commit 16f5dfbc851b ("gfp: include __GFP_NOWARN in GFP_NOWAIT") made
GFP_NOWAIT implicitly include __GFP_NOWARN.
Therefore, explicit __GFP_NOWARN combined with GFP_NOWAIT (e.g.,
`GFP_NOWAIT | __GFP_NOWARN`) is now redundant. Let's clean up these
redundant flags across subsystems.
No functional changes.
Link: https://lkml.kernel.org/r/20250804125657.482109-1-rongqianfeng@vivo.com
Signed-off-by: Qianfeng Rong <rongqianfeng@vivo.com>
Reviewed-by: Wei Yang <richard.weiyang@gmail.com>
Reviewed-by: Liam R. Howlett <Liam.Howlett@oracle.com>
Cc: Matthew Wilcox (Oracle) <willy@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
lib/maple_tree.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--- a/lib/maple_tree.c~maple_tree-remove-redundant-__gfp_nowarn
+++ a/lib/maple_tree.c
@@ -1344,11 +1344,11 @@ static void mas_node_count_gfp(struct ma
* @mas: The maple state
* @count: The number of nodes needed
*
- * Note: Uses GFP_NOWAIT | __GFP_NOWARN for gfp flags.
+ * Note: Uses GFP_NOWAIT for gfp flags.
*/
static void mas_node_count(struct ma_state *mas, int count)
{
- return mas_node_count_gfp(mas, count, GFP_NOWAIT | __GFP_NOWARN);
+ return mas_node_count_gfp(mas, count, GFP_NOWAIT);
}
/*
_
Patches currently in -mm which might be from rongqianfeng@vivo.com are
xarray-remove-redundant-__gfp_nowarn.patch
mm-remove-redundant-__gfp_nowarn.patch
ref_tracker-remove-redundant-__gfp_nowarn.patch
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2025-09-04 21:36 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-04 21:36 [merged] maple_tree-remove-redundant-__gfp_nowarn.patch removed from -mm tree Andrew Morton
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.