mm/mm_init.c: remove the outdated code comment above deferred_grow_zone()
authorBaoquan He <bhe@redhat.com>
Tue, 26 Mar 2024 06:11:31 +0000 (14:11 +0800)
committerAndrew Morton <akpm@linux-foundation.org>
Fri, 26 Apr 2024 03:56:17 +0000 (20:56 -0700)
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/20240326061134.1055295-6-bhe@redhat.com
Signed-off-by: Baoquan He <bhe@redhat.com>
Reviewed-by: Mike Rapoport (IBM) <rppt@kernel.org>
Cc: Mel Gorman <mgorman@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/mm_init.c

index 19c78b54fc8a5ab6df273bf3d858fa8a095db49d..d01912b8a59735cfb816011bd341ba082dc023d3 100644 (file)
@@ -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)
 {