All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] mm/mlock: not handle NULL vma specially
@ 2022-05-04  0:39 Wei Yang
  2022-05-04  0:39 ` [PATCH 2/2] mm/mlock: start is always smaller then vm_end Wei Yang
  2022-05-07 21:03 ` [PATCH 1/2] mm/mlock: not handle NULL vma specially Andrew Morton
  0 siblings, 2 replies; 5+ messages in thread
From: Wei Yang @ 2022-05-04  0:39 UTC (permalink / raw)
  To: akpm; +Cc: linux-mm, Wei Yang

If we can't find a proper vma, the loop would terminate as expected.

It's not necessary to handle it specially.

Signed-off-by: Wei Yang <richard.weiyang@gmail.com>
---
 mm/mlock.c | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/mm/mlock.c b/mm/mlock.c
index efd2dd2943de..0b7cf7d60922 100644
--- a/mm/mlock.c
+++ b/mm/mlock.c
@@ -504,11 +504,7 @@ static unsigned long count_mm_mlocked_page_nr(struct mm_struct *mm,
 	if (mm == NULL)
 		mm = current->mm;
 
-	vma = find_vma(mm, start);
-	if (vma == NULL)
-		return 0;
-
-	for (; vma ; vma = vma->vm_next) {
+	for (vma = find_vma(mm, start); vma ; vma = vma->vm_next) {
 		if (start >= vma->vm_end)
 			continue;
 		if (start + len <=  vma->vm_start)
-- 
2.33.1



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

end of thread, other threads:[~2022-05-07 22:44 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-04  0:39 [PATCH 1/2] mm/mlock: not handle NULL vma specially Wei Yang
2022-05-04  0:39 ` [PATCH 2/2] mm/mlock: start is always smaller then vm_end Wei Yang
2022-05-07 21:03 ` [PATCH 1/2] mm/mlock: not handle NULL vma specially Andrew Morton
2022-05-07 21:56   ` Wei Yang
2022-05-07 22:44     ` Andrew Morton

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.