]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
arch/um/kernel/tlb: Stop using linked list
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>
Thu, 24 Jun 2021 20:04:23 +0000 (16:04 -0400)
Signed-off-by: Liam R. Howlett <Liam.Howlett@Oracle.com>
arch/um/kernel/tlb.c

index bc38f79ca3a38242a5165685910528e18c1f98a4..0cbbebad70a0a5cbbc5848bb8443d88cc6b4691e 100644 (file)
@@ -584,21 +584,21 @@ 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;
+       MA_STATE(mas, &mm->mm_mt, 0, 0);
 
-       while (vma != NULL) {
+       /* Must hold mm_mt lock already */
+       mas_for_each(&mas, vma, ULONG_MAX)
                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;
+       MA_STATE(mas, &mm->mm_mt, 0, 0);
 
-       while (vma != NULL) {
+       /* Must hold mm_mt lock already */
+       mas_for_each(&mas, vma, ULONG_MAX)
                fix_range(mm, vma->vm_start, vma->vm_end, 1);
-               vma = vma->vm_next;
-       }
 }