diff options
author | Peter Xu <peterx@redhat.com> | 2020-08-21 19:49:56 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2020-09-04 09:25:20 -0700 |
commit | 1a0cf26323c80e2f1c58fc04f15686de61bfab0c (patch) | |
tree | 5adf534ff4dc8608036fb26f92b2e1e5396ede2f /mm/ksm.c | |
parent | 09854ba94c6aad7886996bfbee2530b3d8a7f4f4 (diff) | |
download | linux-1a0cf26323c80e2f1c58fc04f15686de61bfab0c.tar.gz linux-1a0cf26323c80e2f1c58fc04f15686de61bfab0c.tar.bz2 linux-1a0cf26323c80e2f1c58fc04f15686de61bfab0c.zip |
mm/ksm: Remove reuse_ksm_page()
Remove the function as the last reference has gone away with the do_wp_page()
changes.
Signed-off-by: Peter Xu <peterx@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/ksm.c')
-rw-r--r-- | mm/ksm.c | 25 |
1 files changed, 0 insertions, 25 deletions
@@ -2660,31 +2660,6 @@ again: goto again; } -bool reuse_ksm_page(struct page *page, - struct vm_area_struct *vma, - unsigned long address) -{ -#ifdef CONFIG_DEBUG_VM - if (WARN_ON(is_zero_pfn(page_to_pfn(page))) || - WARN_ON(!page_mapped(page)) || - WARN_ON(!PageLocked(page))) { - dump_page(page, "reuse_ksm_page"); - return false; - } -#endif - - if (PageSwapCache(page) || !page_stable_node(page)) - return false; - /* Prohibit parallel get_ksm_page() */ - if (!page_ref_freeze(page, 1)) - return false; - - page_move_anon_rmap(page, vma); - page->index = linear_page_index(vma, address); - page_ref_unfreeze(page, 1); - - return true; -} #ifdef CONFIG_MIGRATION void ksm_migrate_page(struct page *newpage, struct page *oldpage) { |