]>
Commit | Line | Data |
---|---|---|
b2441318 | 1 | // SPDX-License-Identifier: GPL-2.0 |
31c9afa6 SL |
2 | /* |
3 | * mm/debug.c | |
4 | * | |
5 | * mm/ specific debug routines. | |
6 | * | |
7 | */ | |
8 | ||
82742a3a SL |
9 | #include <linux/kernel.h> |
10 | #include <linux/mm.h> | |
af658dca | 11 | #include <linux/trace_events.h> |
82742a3a | 12 | #include <linux/memcontrol.h> |
420adbe9 | 13 | #include <trace/events/mmflags.h> |
7cd12b4a | 14 | #include <linux/migrate.h> |
4e462112 | 15 | #include <linux/page_owner.h> |
82742a3a | 16 | |
edf14cdb VB |
17 | #include "internal.h" |
18 | ||
7cd12b4a VB |
19 | char *migrate_reason_names[MR_TYPES] = { |
20 | "compaction", | |
21 | "memory_failure", | |
22 | "memory_hotplug", | |
23 | "syscall_or_cpuset", | |
24 | "mempolicy_mbind", | |
25 | "numa_misplaced", | |
26 | "cma", | |
27 | }; | |
28 | ||
edf14cdb VB |
29 | const struct trace_print_flags pageflag_names[] = { |
30 | __def_pageflag_names, | |
31 | {0, NULL} | |
32 | }; | |
33 | ||
34 | const struct trace_print_flags gfpflag_names[] = { | |
35 | __def_gfpflag_names, | |
36 | {0, NULL} | |
420adbe9 VB |
37 | }; |
38 | ||
edf14cdb VB |
39 | const struct trace_print_flags vmaflag_names[] = { |
40 | __def_vmaflag_names, | |
41 | {0, NULL} | |
82742a3a SL |
42 | }; |
43 | ||
ff8e8116 | 44 | void __dump_page(struct page *page, const char *reason) |
82742a3a | 45 | { |
fc36def9 PT |
46 | bool page_poisoned = PagePoisoned(page); |
47 | int mapcount; | |
48 | ||
49 | /* | |
50 | * If struct page is poisoned don't access Page*() functions as that | |
51 | * leads to recursive loop. Page*() check for poisoned pages, and calls | |
52 | * dump_page() when detected. | |
53 | */ | |
54 | if (page_poisoned) { | |
55 | pr_emerg("page:%px is uninitialized and poisoned", page); | |
56 | goto hex_only; | |
57 | } | |
58 | ||
9996f05e KS |
59 | /* |
60 | * Avoid VM_BUG_ON() in page_mapcount(). | |
61 | * page->_mapcount space in struct page is used by sl[aou]b pages to | |
62 | * encode own info. | |
63 | */ | |
fc36def9 | 64 | mapcount = PageSlab(page) ? 0 : page_mapcount(page); |
4d35427a | 65 | |
152a2d19 | 66 | pr_emerg("page:%px count:%d mapcount:%d mapping:%px index:%#lx", |
4d35427a KS |
67 | page, page_ref_count(page), mapcount, |
68 | page->mapping, page_to_pgoff(page)); | |
53f9263b KS |
69 | if (PageCompound(page)) |
70 | pr_cont(" compound_mapcount: %d", compound_mapcount(page)); | |
71 | pr_cont("\n"); | |
edf14cdb | 72 | BUILD_BUG_ON(ARRAY_SIZE(pageflag_names) != __NR_PAGEFLAGS + 1); |
ff8e8116 | 73 | |
b8eceeb9 VB |
74 | pr_emerg("flags: %#lx(%pGp)\n", page->flags, &page->flags); |
75 | ||
fc36def9 | 76 | hex_only: |
46e8a3a0 VB |
77 | print_hex_dump(KERN_ALERT, "raw: ", DUMP_PREFIX_NONE, 32, |
78 | sizeof(unsigned long), page, | |
79 | sizeof(struct page), false); | |
80 | ||
82742a3a SL |
81 | if (reason) |
82 | pr_alert("page dumped because: %s\n", reason); | |
b8eceeb9 | 83 | |
9edad6ea | 84 | #ifdef CONFIG_MEMCG |
fc36def9 | 85 | if (!page_poisoned && page->mem_cgroup) |
152a2d19 | 86 | pr_alert("page->mem_cgroup:%px\n", page->mem_cgroup); |
9edad6ea | 87 | #endif |
82742a3a SL |
88 | } |
89 | ||
90 | void dump_page(struct page *page, const char *reason) | |
91 | { | |
ff8e8116 | 92 | __dump_page(page, reason); |
4e462112 | 93 | dump_page_owner(page); |
82742a3a SL |
94 | } |
95 | EXPORT_SYMBOL(dump_page); | |
96 | ||
97 | #ifdef CONFIG_DEBUG_VM | |
98 | ||
82742a3a SL |
99 | void dump_vma(const struct vm_area_struct *vma) |
100 | { | |
152a2d19 MW |
101 | pr_emerg("vma %px start %px end %px\n" |
102 | "next %px prev %px mm %px\n" | |
103 | "prot %lx anon_vma %px vm_ops %px\n" | |
104 | "pgoff %lx file %px private_data %px\n" | |
b8eceeb9 | 105 | "flags: %#lx(%pGv)\n", |
82742a3a SL |
106 | vma, (void *)vma->vm_start, (void *)vma->vm_end, vma->vm_next, |
107 | vma->vm_prev, vma->vm_mm, | |
108 | (unsigned long)pgprot_val(vma->vm_page_prot), | |
109 | vma->anon_vma, vma->vm_ops, vma->vm_pgoff, | |
b8eceeb9 VB |
110 | vma->vm_file, vma->vm_private_data, |
111 | vma->vm_flags, &vma->vm_flags); | |
82742a3a SL |
112 | } |
113 | EXPORT_SYMBOL(dump_vma); | |
114 | ||
31c9afa6 SL |
115 | void dump_mm(const struct mm_struct *mm) |
116 | { | |
152a2d19 | 117 | pr_emerg("mm %px mmap %px seqnum %d task_size %lu\n" |
31c9afa6 | 118 | #ifdef CONFIG_MMU |
152a2d19 | 119 | "get_unmapped_area %px\n" |
31c9afa6 SL |
120 | #endif |
121 | "mmap_base %lu mmap_legacy_base %lu highest_vm_end %lu\n" | |
152a2d19 | 122 | "pgd %px mm_users %d mm_count %d pgtables_bytes %lu map_count %d\n" |
31c9afa6 | 123 | "hiwater_rss %lx hiwater_vm %lx total_vm %lx locked_vm %lx\n" |
84638335 | 124 | "pinned_vm %lx data_vm %lx exec_vm %lx stack_vm %lx\n" |
31c9afa6 SL |
125 | "start_code %lx end_code %lx start_data %lx end_data %lx\n" |
126 | "start_brk %lx brk %lx start_stack %lx\n" | |
127 | "arg_start %lx arg_end %lx env_start %lx env_end %lx\n" | |
152a2d19 | 128 | "binfmt %px flags %lx core_state %px\n" |
31c9afa6 | 129 | #ifdef CONFIG_AIO |
152a2d19 | 130 | "ioctx_table %px\n" |
31c9afa6 SL |
131 | #endif |
132 | #ifdef CONFIG_MEMCG | |
152a2d19 | 133 | "owner %px " |
31c9afa6 | 134 | #endif |
152a2d19 | 135 | "exe_file %px\n" |
31c9afa6 | 136 | #ifdef CONFIG_MMU_NOTIFIER |
152a2d19 | 137 | "mmu_notifier_mm %px\n" |
31c9afa6 SL |
138 | #endif |
139 | #ifdef CONFIG_NUMA_BALANCING | |
140 | "numa_next_scan %lu numa_scan_offset %lu numa_scan_seq %d\n" | |
141 | #endif | |
31c9afa6 | 142 | "tlb_flush_pending %d\n" |
b8eceeb9 | 143 | "def_flags: %#lx(%pGv)\n", |
31c9afa6 SL |
144 | |
145 | mm, mm->mmap, mm->vmacache_seqnum, mm->task_size, | |
146 | #ifdef CONFIG_MMU | |
147 | mm->get_unmapped_area, | |
148 | #endif | |
149 | mm->mmap_base, mm->mmap_legacy_base, mm->highest_vm_end, | |
150 | mm->pgd, atomic_read(&mm->mm_users), | |
151 | atomic_read(&mm->mm_count), | |
af5b0f6a | 152 | mm_pgtables_bytes(mm), |
31c9afa6 SL |
153 | mm->map_count, |
154 | mm->hiwater_rss, mm->hiwater_vm, mm->total_vm, mm->locked_vm, | |
84638335 | 155 | mm->pinned_vm, mm->data_vm, mm->exec_vm, mm->stack_vm, |
31c9afa6 SL |
156 | mm->start_code, mm->end_code, mm->start_data, mm->end_data, |
157 | mm->start_brk, mm->brk, mm->start_stack, | |
158 | mm->arg_start, mm->arg_end, mm->env_start, mm->env_end, | |
159 | mm->binfmt, mm->flags, mm->core_state, | |
160 | #ifdef CONFIG_AIO | |
161 | mm->ioctx_table, | |
162 | #endif | |
163 | #ifdef CONFIG_MEMCG | |
164 | mm->owner, | |
165 | #endif | |
166 | mm->exe_file, | |
167 | #ifdef CONFIG_MMU_NOTIFIER | |
168 | mm->mmu_notifier_mm, | |
169 | #endif | |
170 | #ifdef CONFIG_NUMA_BALANCING | |
171 | mm->numa_next_scan, mm->numa_scan_offset, mm->numa_scan_seq, | |
172 | #endif | |
16af97dc | 173 | atomic_read(&mm->tlb_flush_pending), |
b8eceeb9 VB |
174 | mm->def_flags, &mm->def_flags |
175 | ); | |
31c9afa6 SL |
176 | } |
177 | ||
82742a3a | 178 | #endif /* CONFIG_DEBUG_VM */ |