diff options
Diffstat (limited to 'mm/mmap.c')
-rw-r--r-- | mm/mmap.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1900,6 +1900,7 @@ void exit_mmap(struct mm_struct *mm) | |||
1900 | struct mmu_gather *tlb; | 1900 | struct mmu_gather *tlb; |
1901 | struct vm_area_struct *vma = mm->mmap; | 1901 | struct vm_area_struct *vma = mm->mmap; |
1902 | unsigned long nr_accounted = 0; | 1902 | unsigned long nr_accounted = 0; |
1903 | unsigned long end; | ||
1903 | 1904 | ||
1904 | lru_add_drain(); | 1905 | lru_add_drain(); |
1905 | 1906 | ||
@@ -1908,10 +1909,10 @@ void exit_mmap(struct mm_struct *mm) | |||
1908 | flush_cache_mm(mm); | 1909 | flush_cache_mm(mm); |
1909 | tlb = tlb_gather_mmu(mm, 1); | 1910 | tlb = tlb_gather_mmu(mm, 1); |
1910 | /* Use -1 here to ensure all VMAs in the mm are unmapped */ | 1911 | /* Use -1 here to ensure all VMAs in the mm are unmapped */ |
1911 | mm->map_count -= unmap_vmas(&tlb, mm, vma, 0, -1, &nr_accounted, NULL); | 1912 | end = unmap_vmas(&tlb, mm, vma, 0, -1, &nr_accounted, NULL); |
1912 | vm_unacct_memory(nr_accounted); | 1913 | vm_unacct_memory(nr_accounted); |
1913 | free_pgtables(&tlb, vma, 0, 0); | 1914 | free_pgtables(&tlb, vma, 0, 0); |
1914 | tlb_finish_mmu(tlb, 0, MM_VM_SIZE(mm)); | 1915 | tlb_finish_mmu(tlb, 0, end); |
1915 | 1916 | ||
1916 | mm->mmap = mm->mmap_cache = NULL; | 1917 | mm->mmap = mm->mmap_cache = NULL; |
1917 | mm->mm_rb = RB_ROOT; | 1918 | mm->mm_rb = RB_ROOT; |
@@ -1931,7 +1932,6 @@ void exit_mmap(struct mm_struct *mm) | |||
1931 | vma = next; | 1932 | vma = next; |
1932 | } | 1933 | } |
1933 | 1934 | ||
1934 | BUG_ON(mm->map_count); /* This is just debugging */ | ||
1935 | BUG_ON(mm->nr_ptes); /* This is just debugging */ | 1935 | BUG_ON(mm->nr_ptes); /* This is just debugging */ |
1936 | } | 1936 | } |
1937 | 1937 | ||