diff options
| author | Naoya Horiguchi <[email protected]> | 2015-09-08 15:02:09 -0700 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2015-09-08 15:35:28 -0700 |
| commit | c5b4e1b02f2a0c2309ecd58a235a2f5ee4eb0074 (patch) | |
| tree | 40354604f661de3b308dbcff9f9af778192d9f48 /include/linux | |
| parent | acda0c3340282bc7c36f4e9a5e2ccb7bb7e64676 (diff) | |
mm, page_isolation: make set/unset_migratetype_isolate() file-local
Nowaday, set/unset_migratetype_isolate() is defined and used only in
mm/page_isolation, so let's limit the scope within the file.
Signed-off-by: Naoya Horiguchi <[email protected]>
Acked-by: David Rientjes <[email protected]>
Acked-by: Vlastimil Babka <[email protected]>
Cc: Joonsoo Kim <[email protected]>
Cc: Minchan Kim <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/page-isolation.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/linux/page-isolation.h b/include/linux/page-isolation.h index 2dc1e1697b45..047d64706f2a 100644 --- a/include/linux/page-isolation.h +++ b/include/linux/page-isolation.h @@ -65,11 +65,6 @@ undo_isolate_page_range(unsigned long start_pfn, unsigned long end_pfn, int test_pages_isolated(unsigned long start_pfn, unsigned long end_pfn, bool skip_hwpoisoned_pages); -/* - * Internal functions. Changes pageblock's migrate type. - */ -int set_migratetype_isolate(struct page *page, bool skip_hwpoisoned_pages); -void unset_migratetype_isolate(struct page *page, unsigned migratetype); struct page *alloc_migrate_target(struct page *page, unsigned long private, int **resultp); |