aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/migrate.h2
-rw-r--r--mm/migrate.c6
2 files changed, 2 insertions, 6 deletions
diff --git a/include/linux/migrate.h b/include/linux/migrate.h
index 6789c4940c9c..e8d3b08cc354 100644
--- a/include/linux/migrate.h
+++ b/include/linux/migrate.h
@@ -7,8 +7,6 @@
7extern int isolate_lru_page(struct page *p, struct list_head *pagelist); 7extern int isolate_lru_page(struct page *p, struct list_head *pagelist);
8extern int putback_lru_pages(struct list_head *l); 8extern int putback_lru_pages(struct list_head *l);
9extern int migrate_page(struct page *, struct page *); 9extern int migrate_page(struct page *, struct page *);
10extern void migrate_page_copy(struct page *, struct page *);
11extern int migrate_page_remove_references(struct page *, struct page *, int);
12extern int migrate_pages(struct list_head *l, struct list_head *t, 10extern int migrate_pages(struct list_head *l, struct list_head *t,
13 struct list_head *moved, struct list_head *failed); 11 struct list_head *moved, struct list_head *failed);
14extern int migrate_pages_to(struct list_head *pagelist, 12extern int migrate_pages_to(struct list_head *pagelist,
diff --git a/mm/migrate.c b/mm/migrate.c
index 49e71ddb6792..be3f141e53a4 100644
--- a/mm/migrate.c
+++ b/mm/migrate.c
@@ -169,7 +169,7 @@ retry:
169 * Remove references for a page and establish the new page with the correct 169 * Remove references for a page and establish the new page with the correct
170 * basic settings to be able to stop accesses to the page. 170 * basic settings to be able to stop accesses to the page.
171 */ 171 */
172int migrate_page_remove_references(struct page *newpage, 172static int migrate_page_remove_references(struct page *newpage,
173 struct page *page, int nr_refs) 173 struct page *page, int nr_refs)
174{ 174{
175 struct address_space *mapping = page_mapping(page); 175 struct address_space *mapping = page_mapping(page);
@@ -246,12 +246,11 @@ int migrate_page_remove_references(struct page *newpage,
246 246
247 return 0; 247 return 0;
248} 248}
249EXPORT_SYMBOL(migrate_page_remove_references);
250 249
251/* 250/*
252 * Copy the page to its new location 251 * Copy the page to its new location
253 */ 252 */
254void migrate_page_copy(struct page *newpage, struct page *page) 253static void migrate_page_copy(struct page *newpage, struct page *page)
255{ 254{
256 copy_highpage(newpage, page); 255 copy_highpage(newpage, page);
257 256
@@ -286,7 +285,6 @@ void migrate_page_copy(struct page *newpage, struct page *page)
286 if (PageWriteback(newpage)) 285 if (PageWriteback(newpage))
287 end_page_writeback(newpage); 286 end_page_writeback(newpage);
288} 287}
289EXPORT_SYMBOL(migrate_page_copy);
290 288
291/************************************************************ 289/************************************************************
292 * Migration functions 290 * Migration functions