diff options
author | Christoph Lameter <clameter@sgi.com> | 2006-06-23 05:03:29 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-23 10:42:50 -0400 |
commit | e7340f73307abed9283d0a07570d06e228c205dd (patch) | |
tree | e786e2d09cfaf670128571029d833d1d27998d59 /mm/migrate.c | |
parent | 1d8b85ccf1ed53a71b092fb5d807edf1ea7dabdd (diff) |
[PATCH] page migration cleanup: remove useless definitions
Remove the export for migrate_page_remove_references() and migrate_page_copy()
that are unlikely to be used directly by filesystems implementing migration.
The export was useful when buffer_migrate_page() lived in fs/buffer.c but it
has now been moved to migrate.c in the migration reorg.
Signed-off-by: Christoph Lameter <clameter@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
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 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 | */ |
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 |