From: Aruna Ramakrishna <aruna.ramakrishna@oracle.com>
To: linux-mm@kvack.org
Cc: willy@infradead.org, aruna.ramakrishna@oracle.com
Subject: [PATCH 4/4] mm/mempolicy: Convert alloc_pages_preferred_many() to return a folio
Date: Mon, 5 Aug 2024 16:31:20 +0000 [thread overview]
Message-ID: <20240805163120.5971-4-aruna.ramakrishna@oracle.com> (raw)
In-Reply-To: <20240805163120.5971-1-aruna.ramakrishna@oracle.com>
There is only one caller of alloc_pages_preferred_many(), which
already expects a folio. Rename the function and convert the body
of alloc_pages_preferred_many() to work with folios too.
Signed-off-by: Aruna Ramakrishna <aruna.ramakrishna@oracle.com>
---
mm/mempolicy.c | 18 ++++++++----------
1 file changed, 8 insertions(+), 10 deletions(-)
diff --git a/mm/mempolicy.c b/mm/mempolicy.c
index 9be32c3bfff2..33074ffd59fe 100644
--- a/mm/mempolicy.c
+++ b/mm/mempolicy.c
@@ -2185,10 +2185,10 @@ bool mempolicy_in_oom_domain(struct task_struct *tsk,
return ret;
}
-static struct page *alloc_pages_preferred_many(gfp_t gfp, unsigned int order,
- int nid, nodemask_t *nodemask)
+static struct folio *folio_alloc_preferred_many(gfp_t gfp, unsigned int order,
+ int nid, nodemask_t *nodemask)
{
- struct page *page;
+ struct folio *folio;
gfp_t preferred_gfp;
/*
@@ -2199,11 +2199,11 @@ static struct page *alloc_pages_preferred_many(gfp_t gfp, unsigned int order,
*/
preferred_gfp = gfp | __GFP_NOWARN;
preferred_gfp &= ~(__GFP_DIRECT_RECLAIM | __GFP_NOFAIL);
- page = __alloc_pages_noprof(preferred_gfp, order, nid, nodemask);
- if (!page)
- page = __alloc_pages_noprof(gfp, order, nid, NULL);
+ folio = __folio_alloc_noprof(preferred_gfp, order, nid, nodemask);
+ if (!folio)
+ folio = __folio_alloc_noprof(gfp, order, nid, NULL);
- return page;
+ return folio;
}
/**
@@ -2226,9 +2226,7 @@ struct folio *folio_alloc_mpol_noprof(gfp_t gfp, unsigned int order,
nodemask = policy_nodemask(gfp, pol, ilx, &nid);
if (pol->mode == MPOL_PREFERRED_MANY)
- return page_rmappable_folio(
- alloc_pages_preferred_many(gfp, order,
- nid, nodemask));
+ return folio_alloc_preferred_many(gfp, order, nid, nodemask);
if (IS_ENABLED(CONFIG_TRANSPARENT_HUGEPAGE) &&
/* filter "hugepage" allocation, unless from alloc_pages() */
--
2.43.5
next prev parent reply other threads:[~2024-08-05 16:31 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-05 16:31 [PATCH 1/4] mm/mempolicy: Use folio_alloc_mpol_noprof() in alloc_pages_noprof() Aruna Ramakrishna
2024-08-05 16:31 ` [PATCH 2/4] mm/mempolicy: Make alloc_pages_mpol_noprof() static Aruna Ramakrishna
2024-08-05 16:31 ` [PATCH 3/4] mm/mempolicy: Remove alloc_pages_mpol_noprof() Aruna Ramakrishna
2024-08-05 16:31 ` Aruna Ramakrishna [this message]
2024-08-06 8:05 ` [PATCH 1/4] mm/mempolicy: Use folio_alloc_mpol_noprof() in alloc_pages_noprof() Kefeng Wang
2024-08-20 17:58 ` Aruna Ramakrishna
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240805163120.5971-4-aruna.ramakrishna@oracle.com \
--to=aruna.ramakrishna@oracle.com \
--cc=linux-mm@kvack.org \
--cc=willy@infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox