All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH-next] mm:delete a redundant parameter of rmqueue_pcplist
@ 2022-08-31  1:34 Ze Zuo
  0 siblings, 0 replies; only message in thread
From: Ze Zuo @ 2022-08-31  1:34 UTC (permalink / raw)
  To: akpm, linux-mm, linux-kernel; +Cc: wangkefeng.wang, zezuo

From: zezuo <zuoze1@huawei.com>

The gfp_flags parameter is not used in rmqueue_pcplist, so
directly delete this parameter.

Signed-off-by: zezuo <zuoze1@huawei.com>
---
 mm/page_alloc.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 40bfc6b29014..7333cd75bdd5 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -3779,8 +3779,7 @@ struct page *__rmqueue_pcplist(struct zone *zone, unsigned int order,
 /* Lock and remove page from the per-cpu list */
 static struct page *rmqueue_pcplist(struct zone *preferred_zone,
 			struct zone *zone, unsigned int order,
-			gfp_t gfp_flags, int migratetype,
-			unsigned int alloc_flags)
+			int migratetype, unsigned int alloc_flags)
 {
 	struct per_cpu_pages *pcp;
 	struct list_head *list;
@@ -3841,7 +3840,7 @@ struct page *rmqueue(struct zone *preferred_zone,
 		if (!IS_ENABLED(CONFIG_CMA) || alloc_flags & ALLOC_CMA ||
 				migratetype != MIGRATE_MOVABLE) {
 			page = rmqueue_pcplist(preferred_zone, zone, order,
-					gfp_flags, migratetype, alloc_flags);
+					migratetype, alloc_flags);
 			if (likely(page))
 				goto out;
 		}
-- 
2.25.1


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2022-08-31  1:35 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-31  1:34 [PATCH-next] mm:delete a redundant parameter of rmqueue_pcplist Ze Zuo

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.