aboutsummaryrefslogtreecommitdiffstats
path: root/mm/mm_init.c
diff options
context:
space:
mode:
authorBaoquan He <[email protected]>2024-03-26 06:11:31 +0000
committerAndrew Morton <[email protected]>2024-04-26 03:56:17 +0000
commitf55d3471b78a15e8ec1db88fe12456aad70600a4 (patch)
tree679cbaaae581dce6225e4c7c1c7c219e25e9eaba /mm/mm_init.c
parentmm/page_alloc.c: remove unneeded codes in !NUMA version of build_zonelists() (diff)
downloadkernel-f55d3471b78a15e8ec1db88fe12456aad70600a4.tar.gz
kernel-f55d3471b78a15e8ec1db88fe12456aad70600a4.zip
mm/mm_init.c: remove the outdated code comment above deferred_grow_zone()
The noinline attribute has been taken off in commit 9420f89db2dd ("mm: move most of core MM initialization to mm/mm_init.c"). So remove the unneeded code comment above deferred_grow_zone(). And also remove the unneeded bracket in deferred_init_pages(). Link: https://lkml.kernel.org/r/[email protected] Signed-off-by: Baoquan He <[email protected]> Reviewed-by: Mike Rapoport (IBM) <[email protected]> Cc: Mel Gorman <[email protected]> Signed-off-by: Andrew Morton <[email protected]>
Diffstat (limited to 'mm/mm_init.c')
-rw-r--r--mm/mm_init.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/mm/mm_init.c b/mm/mm_init.c
index 19c78b54fc8a..d01912b8a597 100644
--- a/mm/mm_init.c
+++ b/mm/mm_init.c
@@ -2014,7 +2014,7 @@ static unsigned long __init deferred_init_pages(struct zone *zone,
__init_single_page(page, pfn, zid, nid);
nr_pages++;
}
- return (nr_pages);
+ return nr_pages;
}
/*
@@ -2216,10 +2216,6 @@ zone_empty:
* Return true when zone was grown, otherwise return false. We return true even
* when we grow less than requested, to let the caller decide if there are
* enough pages to satisfy the allocation.
- *
- * Note: We use noinline because this function is needed only during boot, and
- * it is called from a __ref function _deferred_grow_zone. This way we are
- * making sure that it is not inlined into permanent text section.
*/
bool __init deferred_grow_zone(struct zone *zone, unsigned int order)
{