summaryrefslogtreecommitdiff
path: root/mm
diff options
context:
space:
mode:
authorLinux Build Service Account <lnxbuild@localhost>2018-03-09 02:47:53 -0800
committerGerrit - the friendly Code Review server <code-review@localhost>2018-03-09 02:47:52 -0800
commitbc60923a9f897c0890dfd194dfd937b38a7af289 (patch)
tree03d80ad23c00e798837f72a9af3fc32a118f4f1a /mm
parentb36bac6b0d11ea12571b2fba2f98b71c89a62c33 (diff)
parentc9a9116e8d6fa05a09ffe778f20dc1a3ad15bcda (diff)
Merge "mm/migration: make isolate_movable_page() return int type"
Diffstat (limited to 'mm')
-rw-r--r--mm/compaction.c2
-rw-r--r--mm/migrate.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/mm/compaction.c b/mm/compaction.c
index faee4807b1d2..86687ec1d034 100644
--- a/mm/compaction.c
+++ b/mm/compaction.c
@@ -853,7 +853,7 @@ isolate_migratepages_block(struct compact_control *cc, unsigned long low_pfn,
locked = false;
}
- if (isolate_movable_page(page, isolate_mode))
+ if (!isolate_movable_page(page, isolate_mode))
goto isolate_success;
}
diff --git a/mm/migrate.c b/mm/migrate.c
index a021071eceaf..921cf12b03ce 100644
--- a/mm/migrate.c
+++ b/mm/migrate.c
@@ -75,7 +75,7 @@ int migrate_prep_local(void)
return 0;
}
-bool isolate_movable_page(struct page *page, isolate_mode_t mode)
+int isolate_movable_page(struct page *page, isolate_mode_t mode)
{
struct address_space *mapping;
@@ -126,14 +126,14 @@ bool isolate_movable_page(struct page *page, isolate_mode_t mode)
__SetPageIsolated(page);
unlock_page(page);
- return true;
+ return 0;
out_no_isolated:
unlock_page(page);
out_putpage:
put_page(page);
out:
- return false;
+ return -EBUSY;
}
/* It should be called on page which is PG_movable */