diff options
Diffstat (limited to 'mm/migrate.c')
-rw-r--r-- | mm/migrate.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/mm/migrate.c b/mm/migrate.c index 49e71ddb679..be3f141e53a 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 | */ |
172 | int migrate_page_remove_references(struct page *newpage, | 172 | static 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 | } |
249 | EXPORT_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 | */ |
254 | void migrate_page_copy(struct page *newpage, struct page *page) | 253 | static 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 | } |
289 | EXPORT_SYMBOL(migrate_page_copy); | ||
290 | 288 | ||
291 | /************************************************************ | 289 | /************************************************************ |
292 | * Migration functions | 290 | * Migration functions |