diff options
Diffstat (limited to 'mm/debug.c')
-rw-r--r-- | mm/debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mm/debug.c b/mm/debug.c index 0e58f3211f89..3eb3ac2fcee7 100644 --- a/mm/debug.c +++ b/mm/debug.c | |||
@@ -130,7 +130,6 @@ static const struct trace_print_flags vmaflags_names[] = { | |||
130 | {VM_ACCOUNT, "account" }, | 130 | {VM_ACCOUNT, "account" }, |
131 | {VM_NORESERVE, "noreserve" }, | 131 | {VM_NORESERVE, "noreserve" }, |
132 | {VM_HUGETLB, "hugetlb" }, | 132 | {VM_HUGETLB, "hugetlb" }, |
133 | {VM_NONLINEAR, "nonlinear" }, | ||
134 | #if defined(CONFIG_X86) | 133 | #if defined(CONFIG_X86) |
135 | {VM_PAT, "pat" }, | 134 | {VM_PAT, "pat" }, |
136 | #elif defined(CONFIG_PPC) | 135 | #elif defined(CONFIG_PPC) |
@@ -174,7 +173,7 @@ void dump_mm(const struct mm_struct *mm) | |||
174 | "get_unmapped_area %p\n" | 173 | "get_unmapped_area %p\n" |
175 | #endif | 174 | #endif |
176 | "mmap_base %lu mmap_legacy_base %lu highest_vm_end %lu\n" | 175 | "mmap_base %lu mmap_legacy_base %lu highest_vm_end %lu\n" |
177 | "pgd %p mm_users %d mm_count %d nr_ptes %lu map_count %d\n" | 176 | "pgd %p mm_users %d mm_count %d nr_ptes %lu nr_pmds %lu map_count %d\n" |
178 | "hiwater_rss %lx hiwater_vm %lx total_vm %lx locked_vm %lx\n" | 177 | "hiwater_rss %lx hiwater_vm %lx total_vm %lx locked_vm %lx\n" |
179 | "pinned_vm %lx shared_vm %lx exec_vm %lx stack_vm %lx\n" | 178 | "pinned_vm %lx shared_vm %lx exec_vm %lx stack_vm %lx\n" |
180 | "start_code %lx end_code %lx start_data %lx end_data %lx\n" | 179 | "start_code %lx end_code %lx start_data %lx end_data %lx\n" |
@@ -207,6 +206,7 @@ void dump_mm(const struct mm_struct *mm) | |||
207 | mm->pgd, atomic_read(&mm->mm_users), | 206 | mm->pgd, atomic_read(&mm->mm_users), |
208 | atomic_read(&mm->mm_count), | 207 | atomic_read(&mm->mm_count), |
209 | atomic_long_read((atomic_long_t *)&mm->nr_ptes), | 208 | atomic_long_read((atomic_long_t *)&mm->nr_ptes), |
209 | mm_nr_pmds((struct mm_struct *)mm), | ||
210 | mm->map_count, | 210 | mm->map_count, |
211 | mm->hiwater_rss, mm->hiwater_vm, mm->total_vm, mm->locked_vm, | 211 | mm->hiwater_rss, mm->hiwater_vm, mm->total_vm, mm->locked_vm, |
212 | mm->pinned_vm, mm->shared_vm, mm->exec_vm, mm->stack_vm, | 212 | mm->pinned_vm, mm->shared_vm, mm->exec_vm, mm->stack_vm, |