Commit 2dbd9005 authored by Baolin Wang's avatar Baolin Wang Committed by Andrew Morton

mm: compaction: change fast_isolate_freepages() to void type

No caller cares about the return value of fast_isolate_freepages(), void
it.

Link: https://lkml.kernel.org/r/759fca20b22ebf4c81afa30496837b9e0fb2e53b.1685018752.git.baolin.wang@linux.alibaba.comSigned-off-by: default avatarBaolin Wang <baolin.wang@linux.alibaba.com>
Acked-by: default avatarVlastimil Babka <vbabka@suse.cz>
Cc: Mel Gorman <mgorman@techsingularity.net>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent 75990f64
...@@ -1413,8 +1413,7 @@ static int next_search_order(struct compact_control *cc, int order) ...@@ -1413,8 +1413,7 @@ static int next_search_order(struct compact_control *cc, int order)
return order; return order;
} }
static unsigned long static void fast_isolate_freepages(struct compact_control *cc)
fast_isolate_freepages(struct compact_control *cc)
{ {
unsigned int limit = max(1U, freelist_scan_limit(cc) >> 1); unsigned int limit = max(1U, freelist_scan_limit(cc) >> 1);
unsigned int nr_scanned = 0; unsigned int nr_scanned = 0;
...@@ -1427,7 +1426,7 @@ fast_isolate_freepages(struct compact_control *cc) ...@@ -1427,7 +1426,7 @@ fast_isolate_freepages(struct compact_control *cc)
/* Full compaction passes in a negative order */ /* Full compaction passes in a negative order */
if (cc->order <= 0) if (cc->order <= 0)
return cc->free_pfn; return;
/* /*
* If starting the scan, use a deeper search and use the highest * If starting the scan, use a deeper search and use the highest
...@@ -1566,11 +1565,10 @@ fast_isolate_freepages(struct compact_control *cc) ...@@ -1566,11 +1565,10 @@ fast_isolate_freepages(struct compact_control *cc)
cc->total_free_scanned += nr_scanned; cc->total_free_scanned += nr_scanned;
if (!page) if (!page)
return cc->free_pfn; return;
low_pfn = page_to_pfn(page); low_pfn = page_to_pfn(page);
fast_isolate_around(cc, low_pfn); fast_isolate_around(cc, low_pfn);
return low_pfn;
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment