aboutsummaryrefslogtreecommitdiff
path: root/mm/page_alloc.c
diff options
context:
space:
mode:
authorMoyster <oysterized@gmail.com>2019-05-03 13:58:40 +0200
committerMoyster <oysterized@gmail.com>2019-05-03 14:43:37 +0200
commitb32c7c99afe94a3149877c762f3ba82bb10f55a1 (patch)
treee779ccaeecb3d919656be77c8d680da5c25216f4 /mm/page_alloc.c
parent0b15289a67c981c2630627eec0ed0979039ab366 (diff)
mm/page_alloc: missing argument in move_freepages_block
Diffstat (limited to 'mm/page_alloc.c')
-rw-r--r--mm/page_alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index da3bf294b..e8153eca7 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -1341,7 +1341,7 @@ static int try_to_steal_freepages(struct zone *zone, struct page *page,
page_group_by_mobility_disabled) {
int pages;
- pages = move_freepages_block(zone, page, start_type);
+ pages = move_freepages_block(zone, page, start_type, 0);
/* Claim the whole block if over half of it is free */
if (pages >= (1 << (pageblock_order-1)) ||