diff mbox series

[2/4] mm/mempolicy: Make alloc_pages_mpol_noprof() static

Message ID 20240805163120.5971-2-aruna.ramakrishna@oracle.com (mailing list archive)
State New
Headers show
Series [1/4] mm/mempolicy: Use folio_alloc_mpol_noprof() in alloc_pages_noprof() | expand

Commit Message

Aruna Ramakrishna Aug. 5, 2024, 4:31 p.m. UTC
As a first step to removing/replacing alloc_pages_mpol()
and alloc_pages_mpol_noprof() with their folio equivalents,
make alloc_pages_mpol_noprof() static.

Signed-off-by: Aruna Ramakrishna <aruna.ramakrishna@oracle.com>
---
 include/linux/gfp.h | 7 -------
 mm/mempolicy.c      | 2 +-
 2 files changed, 1 insertion(+), 8 deletions(-)
diff mbox series

Patch

diff --git a/include/linux/gfp.h b/include/linux/gfp.h
index f53f76e0b17e..f5ce91ccc954 100644
--- a/include/linux/gfp.h
+++ b/include/linux/gfp.h
@@ -300,8 +300,6 @@  static inline struct page *alloc_pages_node_noprof(int nid, gfp_t gfp_mask,
 
 #ifdef CONFIG_NUMA
 struct page *alloc_pages_noprof(gfp_t gfp, unsigned int order);
-struct page *alloc_pages_mpol_noprof(gfp_t gfp, unsigned int order,
-		struct mempolicy *mpol, pgoff_t ilx, int nid);
 struct folio *folio_alloc_noprof(gfp_t gfp, unsigned int order);
 struct folio *folio_alloc_mpol_noprof(gfp_t gfp, unsigned int order,
 		struct mempolicy *mpol, pgoff_t ilx, int nid);
@@ -312,11 +310,6 @@  static inline struct page *alloc_pages_noprof(gfp_t gfp_mask, unsigned int order
 {
 	return alloc_pages_node_noprof(numa_node_id(), gfp_mask, order);
 }
-static inline struct page *alloc_pages_mpol_noprof(gfp_t gfp, unsigned int order,
-		struct mempolicy *mpol, pgoff_t ilx, int nid)
-{
-	return alloc_pages_noprof(gfp, order);
-}
 static inline struct folio *folio_alloc_noprof(gfp_t gfp, unsigned int order)
 {
 	return __folio_alloc_node(gfp, order, numa_node_id());
diff --git a/mm/mempolicy.c b/mm/mempolicy.c
index 2d367ef15d0f..6132a230a3b9 100644
--- a/mm/mempolicy.c
+++ b/mm/mempolicy.c
@@ -2216,7 +2216,7 @@  static struct page *alloc_pages_preferred_many(gfp_t gfp, unsigned int order,
  *
  * Return: The page on success or NULL if allocation fails.
  */
-struct page *alloc_pages_mpol_noprof(gfp_t gfp, unsigned int order,
+static struct page *alloc_pages_mpol_noprof(gfp_t gfp, unsigned int order,
 		struct mempolicy *pol, pgoff_t ilx, int nid)
 {
 	nodemask_t *nodemask;