linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mm: migrate: remove unused parameter in migrate_vma_insert_page()
@ 2020-12-04 11:54 Lee Bruce
  2020-12-04 13:02 ` David Hildenbrand
  0 siblings, 1 reply; 2+ messages in thread
From: Lee Bruce @ 2020-12-04 11:54 UTC (permalink / raw)
  To: akpm; +Cc: linux-mm, linux-kernel, Lee Bruce

[-- Attachment #1: Type: text/plain, Size: 1158 bytes --]

From 810f69c5438c66aafccf18ba8f43b99b64b85237 Mon Sep 17 00:00:00 2001
From: Stephen Zhang <starzhangzsd@gmail.com>
Date: Fri, 4 Dec 2020 16:32:38 +0800
Subject: [PATCH] mm: migrate: remove unused parameter in
 migrate_vma_insert_page()

"dst" parameter to migrate_vma_insert_page() is not used anymore.

Signed-off-by: Stephen Zhang <starzhangzsd@gmail.com>
---
 mm/migrate.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/mm/migrate.c b/mm/migrate.c
index 4385f2f..ee5e612 100644
--- a/mm/migrate.c
+++ b/mm/migrate.c
@@ -2894,8 +2894,7 @@ int migrate_vma_setup(struct migrate_vma *args)
 static void migrate_vma_insert_page(struct migrate_vma *migrate,
     unsigned long addr,
     struct page *page,
-    unsigned long *src,
-    unsigned long *dst)
+    unsigned long *src)
 {
  struct vm_area_struct *vma = migrate->vma;
  struct mm_struct *mm = vma->vm_mm;
@@ -3056,8 +3055,7 @@ void migrate_vma_pages(struct migrate_vma *migrate)
  mmu_notifier_invalidate_range_start(&range);
  }
  migrate_vma_insert_page(migrate, addr, newpage,
- &migrate->src[i],
- &migrate->dst[i]);
+ &migrate->src[i]);
  continue;
  }

-- 
1.8.3.1

[-- Attachment #2: Type: text/html, Size: 1514 bytes --]

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-12-04 13:02 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-04 11:54 [PATCH] mm: migrate: remove unused parameter in migrate_vma_insert_page() Lee Bruce
2020-12-04 13:02 ` David Hildenbrand

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).