]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
um: Remove vma linked list walk
authorLiam R. Howlett <Liam.Howlett@Oracle.com>
Tue, 16 Mar 2021 19:56:41 +0000 (15:56 -0400)
committerLiam R. Howlett <Liam.Howlett@oracle.com>
Mon, 14 Mar 2022 18:49:46 +0000 (14:49 -0400)
Use the VMA iterator instead.

Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Signed-off-by: Liam R. Howlett <Liam.Howlett@Oracle.com>
arch/um/kernel/tlb.c

index bc38f79ca3a38242a5165685910528e18c1f98a4..ad449173a1a1cdf20f3973fdfea96539392bc343 100644 (file)
@@ -584,21 +584,19 @@ void flush_tlb_mm_range(struct mm_struct *mm, unsigned long start,
 
 void flush_tlb_mm(struct mm_struct *mm)
 {
-       struct vm_area_struct *vma = mm->mmap;
+       struct vm_area_struct *vma;
+       VMA_ITERATOR(vmi, mm, 0);
 
-       while (vma != NULL) {
+       for_each_vma(vmi, vma)
                fix_range(mm, vma->vm_start, vma->vm_end, 0);
-               vma = vma->vm_next;
-       }
 }
 
 void force_flush_all(void)
 {
        struct mm_struct *mm = current->mm;
-       struct vm_area_struct *vma = mm->mmap;
+       struct vm_area_struct *vma;
+       VMA_ITERATOR(vmi, mm, 0);
 
-       while (vma != NULL) {
+       for_each_vma(vmi, vma)
                fix_range(mm, vma->vm_start, vma->vm_end, 1);
-               vma = vma->vm_next;
-       }
 }