aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoonsoo Kim <iamjoonsoo.kim@lge.com>2014-01-21 18:51:18 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2014-01-21 19:19:49 -0500
commit78d5506e82b21a1a1de68c24182db2c2fe521422 (patch)
treed3a0632291ff79bc1118e68cbceb1d5e92350dab
parent59c82b70dcd9cc273c21fae5abc29e41fc732a17 (diff)
mm/migrate: remove unused function, fail_migrate_page()
fail_migrate_page() isn't used anywhere, so remove it. Signed-off-by: Joonsoo Kim <iamjoonsoo.kim@lge.com> Acked-by: Christoph Lameter <cl@linux.com> Reviewed-by: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> Reviewed-by: Wanpeng Li <liwanp@linux.vnet.ibm.com> Cc: Rafael Aquini <aquini@redhat.com> Cc: Vlastimil Babka <vbabka@suse.cz> Cc: Wanpeng Li <liwanp@linux.vnet.ibm.com> Cc: Mel Gorman <mgorman@suse.de> Cc: Rik van Riel <riel@redhat.com> Cc: Zhang Yanfei <zhangyanfei@cn.fujitsu.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--include/linux/migrate.h4
-rw-r--r--mm/migrate.c8
2 files changed, 0 insertions, 12 deletions
diff --git a/include/linux/migrate.h b/include/linux/migrate.h
index 2a411bc0097f..84a31ad0b791 100644
--- a/include/linux/migrate.h
+++ b/include/linux/migrate.h
@@ -41,9 +41,6 @@ extern int migrate_page(struct address_space *,
41extern int migrate_pages(struct list_head *l, new_page_t x, 41extern int migrate_pages(struct list_head *l, new_page_t x,
42 unsigned long private, enum migrate_mode mode, int reason); 42 unsigned long private, enum migrate_mode mode, int reason);
43 43
44extern int fail_migrate_page(struct address_space *,
45 struct page *, struct page *);
46
47extern int migrate_prep(void); 44extern int migrate_prep(void);
48extern int migrate_prep_local(void); 45extern int migrate_prep_local(void);
49extern int migrate_vmas(struct mm_struct *mm, 46extern int migrate_vmas(struct mm_struct *mm,
@@ -84,7 +81,6 @@ static inline int migrate_huge_page_move_mapping(struct address_space *mapping,
84 81
85/* Possible settings for the migrate_page() method in address_operations */ 82/* Possible settings for the migrate_page() method in address_operations */
86#define migrate_page NULL 83#define migrate_page NULL
87#define fail_migrate_page NULL
88 84
89#endif /* CONFIG_MIGRATION */ 85#endif /* CONFIG_MIGRATION */
90 86
diff --git a/mm/migrate.c b/mm/migrate.c
index 8a73d66be102..a8025befc323 100644
--- a/mm/migrate.c
+++ b/mm/migrate.c
@@ -552,14 +552,6 @@ void migrate_page_copy(struct page *newpage, struct page *page)
552 * Migration functions 552 * Migration functions
553 ***********************************************************/ 553 ***********************************************************/
554 554
555/* Always fail migration. Used for mappings that are not movable */
556int fail_migrate_page(struct address_space *mapping,
557 struct page *newpage, struct page *page)
558{
559 return -EIO;
560}
561EXPORT_SYMBOL(fail_migrate_page);
562
563/* 555/*
564 * Common logic to directly migrate a single page suitable for 556 * Common logic to directly migrate a single page suitable for
565 * pages that do not use PagePrivate/PagePrivate2. 557 * pages that do not use PagePrivate/PagePrivate2.