Blame view

mm/debug.c 4.53 KB
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  // SPDX-License-Identifier: GPL-2.0
31c9afa6d   Sasha Levin   mm: introduce VM_...
2
3
4
5
6
7
  /*
   * mm/debug.c
   *
   * mm/ specific debug routines.
   *
   */
82742a3a5   Sasha Levin   mm: move debug co...
8
9
  #include <linux/kernel.h>
  #include <linux/mm.h>
af658dca2   Steven Rostedt (Red Hat)   tracing: Rename f...
10
  #include <linux/trace_events.h>
82742a3a5   Sasha Levin   mm: move debug co...
11
  #include <linux/memcontrol.h>
420adbe9f   Vlastimil Babka   mm, tracing: unif...
12
  #include <trace/events/mmflags.h>
7cd12b4ab   Vlastimil Babka   mm, page_owner: t...
13
  #include <linux/migrate.h>
4e462112e   Vlastimil Babka   mm, page_owner: d...
14
  #include <linux/page_owner.h>
82742a3a5   Sasha Levin   mm: move debug co...
15

edf14cdbf   Vlastimil Babka   mm, printk: intro...
16
  #include "internal.h"
7cd12b4ab   Vlastimil Babka   mm, page_owner: t...
17
18
19
20
21
22
23
24
25
  char *migrate_reason_names[MR_TYPES] = {
  	"compaction",
  	"memory_failure",
  	"memory_hotplug",
  	"syscall_or_cpuset",
  	"mempolicy_mbind",
  	"numa_misplaced",
  	"cma",
  };
edf14cdbf   Vlastimil Babka   mm, printk: intro...
26
27
28
29
30
31
32
33
  const struct trace_print_flags pageflag_names[] = {
  	__def_pageflag_names,
  	{0, NULL}
  };
  
  const struct trace_print_flags gfpflag_names[] = {
  	__def_gfpflag_names,
  	{0, NULL}
420adbe9f   Vlastimil Babka   mm, tracing: unif...
34
  };
edf14cdbf   Vlastimil Babka   mm, printk: intro...
35
36
37
  const struct trace_print_flags vmaflag_names[] = {
  	__def_vmaflag_names,
  	{0, NULL}
82742a3a5   Sasha Levin   mm: move debug co...
38
  };
ff8e81163   Vlastimil Babka   mm, debug: move b...
39
  void __dump_page(struct page *page, const char *reason)
82742a3a5   Sasha Levin   mm: move debug co...
40
  {
fc36def99   Pavel Tatashin   mm: teach dump_pa...
41
42
43
44
45
46
47
48
49
50
51
52
  	bool page_poisoned = PagePoisoned(page);
  	int mapcount;
  
  	/*
  	 * If struct page is poisoned don't access Page*() functions as that
  	 * leads to recursive loop. Page*() check for poisoned pages, and calls
  	 * dump_page() when detected.
  	 */
  	if (page_poisoned) {
  		pr_emerg("page:%px is uninitialized and poisoned", page);
  		goto hex_only;
  	}
9996f05ea   Kirill A. Shutemov   mm: clarify why w...
53
54
55
56
57
  	/*
  	 * Avoid VM_BUG_ON() in page_mapcount().
  	 * page->_mapcount space in struct page is used by sl[aou]b pages to
  	 * encode own info.
  	 */
fc36def99   Pavel Tatashin   mm: teach dump_pa...
58
  	mapcount = PageSlab(page) ? 0 : page_mapcount(page);
4d35427ad   Kirill A. Shutemov   mm: avoid endless...
59

152a2d199   Matthew Wilcox   mm/debug.c: provi...
60
  	pr_emerg("page:%px count:%d mapcount:%d mapping:%px index:%#lx",
4d35427ad   Kirill A. Shutemov   mm: avoid endless...
61
62
  		  page, page_ref_count(page), mapcount,
  		  page->mapping, page_to_pgoff(page));
53f9263ba   Kirill A. Shutemov   mm: rework mapcou...
63
64
65
66
  	if (PageCompound(page))
  		pr_cont(" compound_mapcount: %d", compound_mapcount(page));
  	pr_cont("
  ");
edf14cdbf   Vlastimil Babka   mm, printk: intro...
67
  	BUILD_BUG_ON(ARRAY_SIZE(pageflag_names) != __NR_PAGEFLAGS + 1);
ff8e81163   Vlastimil Babka   mm, debug: move b...
68

b8eceeb99   Vlastimil Babka   mm, debug: replac...
69
70
  	pr_emerg("flags: %#lx(%pGp)
  ", page->flags, &page->flags);
fc36def99   Pavel Tatashin   mm: teach dump_pa...
71
  hex_only:
46e8a3a08   Vlastimil Babka   mm, debug: print ...
72
73
74
  	print_hex_dump(KERN_ALERT, "raw: ", DUMP_PREFIX_NONE, 32,
  			sizeof(unsigned long), page,
  			sizeof(struct page), false);
82742a3a5   Sasha Levin   mm: move debug co...
75
76
77
  	if (reason)
  		pr_alert("page dumped because: %s
  ", reason);
b8eceeb99   Vlastimil Babka   mm, debug: replac...
78

9edad6ea0   Johannes Weiner   mm: move page->me...
79
  #ifdef CONFIG_MEMCG
fc36def99   Pavel Tatashin   mm: teach dump_pa...
80
  	if (!page_poisoned && page->mem_cgroup)
152a2d199   Matthew Wilcox   mm/debug.c: provi...
81
82
  		pr_alert("page->mem_cgroup:%px
  ", page->mem_cgroup);
9edad6ea0   Johannes Weiner   mm: move page->me...
83
  #endif
82742a3a5   Sasha Levin   mm: move debug co...
84
85
86
87
  }
  
  void dump_page(struct page *page, const char *reason)
  {
ff8e81163   Vlastimil Babka   mm, debug: move b...
88
  	__dump_page(page, reason);
4e462112e   Vlastimil Babka   mm, page_owner: d...
89
  	dump_page_owner(page);
82742a3a5   Sasha Levin   mm: move debug co...
90
91
92
93
  }
  EXPORT_SYMBOL(dump_page);
  
  #ifdef CONFIG_DEBUG_VM
82742a3a5   Sasha Levin   mm: move debug co...
94
95
  void dump_vma(const struct vm_area_struct *vma)
  {
152a2d199   Matthew Wilcox   mm/debug.c: provi...
96
97
98
99
100
101
102
103
  	pr_emerg("vma %px start %px end %px
  "
  		"next %px prev %px mm %px
  "
  		"prot %lx anon_vma %px vm_ops %px
  "
  		"pgoff %lx file %px private_data %px
  "
b8eceeb99   Vlastimil Babka   mm, debug: replac...
104
105
  		"flags: %#lx(%pGv)
  ",
82742a3a5   Sasha Levin   mm: move debug co...
106
107
108
109
  		vma, (void *)vma->vm_start, (void *)vma->vm_end, vma->vm_next,
  		vma->vm_prev, vma->vm_mm,
  		(unsigned long)pgprot_val(vma->vm_page_prot),
  		vma->anon_vma, vma->vm_ops, vma->vm_pgoff,
b8eceeb99   Vlastimil Babka   mm, debug: replac...
110
111
  		vma->vm_file, vma->vm_private_data,
  		vma->vm_flags, &vma->vm_flags);
82742a3a5   Sasha Levin   mm: move debug co...
112
113
  }
  EXPORT_SYMBOL(dump_vma);
31c9afa6d   Sasha Levin   mm: introduce VM_...
114
115
  void dump_mm(const struct mm_struct *mm)
  {
7a9cdebdc   Linus Torvalds   mm: get rid of vm...
116
117
  	pr_emerg("mm %px mmap %px seqnum %llu task_size %lu
  "
31c9afa6d   Sasha Levin   mm: introduce VM_...
118
  #ifdef CONFIG_MMU
152a2d199   Matthew Wilcox   mm/debug.c: provi...
119
120
  		"get_unmapped_area %px
  "
31c9afa6d   Sasha Levin   mm: introduce VM_...
121
122
123
  #endif
  		"mmap_base %lu mmap_legacy_base %lu highest_vm_end %lu
  "
152a2d199   Matthew Wilcox   mm/debug.c: provi...
124
125
  		"pgd %px mm_users %d mm_count %d pgtables_bytes %lu map_count %d
  "
31c9afa6d   Sasha Levin   mm: introduce VM_...
126
127
  		"hiwater_rss %lx hiwater_vm %lx total_vm %lx locked_vm %lx
  "
846383359   Konstantin Khlebnikov   mm: rework virtua...
128
129
  		"pinned_vm %lx data_vm %lx exec_vm %lx stack_vm %lx
  "
31c9afa6d   Sasha Levin   mm: introduce VM_...
130
131
132
133
134
135
  		"start_code %lx end_code %lx start_data %lx end_data %lx
  "
  		"start_brk %lx brk %lx start_stack %lx
  "
  		"arg_start %lx arg_end %lx env_start %lx env_end %lx
  "
152a2d199   Matthew Wilcox   mm/debug.c: provi...
136
137
  		"binfmt %px flags %lx core_state %px
  "
31c9afa6d   Sasha Levin   mm: introduce VM_...
138
  #ifdef CONFIG_AIO
152a2d199   Matthew Wilcox   mm/debug.c: provi...
139
140
  		"ioctx_table %px
  "
31c9afa6d   Sasha Levin   mm: introduce VM_...
141
142
  #endif
  #ifdef CONFIG_MEMCG
152a2d199   Matthew Wilcox   mm/debug.c: provi...
143
  		"owner %px "
31c9afa6d   Sasha Levin   mm: introduce VM_...
144
  #endif
152a2d199   Matthew Wilcox   mm/debug.c: provi...
145
146
  		"exe_file %px
  "
31c9afa6d   Sasha Levin   mm: introduce VM_...
147
  #ifdef CONFIG_MMU_NOTIFIER
152a2d199   Matthew Wilcox   mm/debug.c: provi...
148
149
  		"mmu_notifier_mm %px
  "
31c9afa6d   Sasha Levin   mm: introduce VM_...
150
151
152
153
154
  #endif
  #ifdef CONFIG_NUMA_BALANCING
  		"numa_next_scan %lu numa_scan_offset %lu numa_scan_seq %d
  "
  #endif
31c9afa6d   Sasha Levin   mm: introduce VM_...
155
156
  		"tlb_flush_pending %d
  "
b8eceeb99   Vlastimil Babka   mm, debug: replac...
157
158
  		"def_flags: %#lx(%pGv)
  ",
31c9afa6d   Sasha Levin   mm: introduce VM_...
159

7a9cdebdc   Linus Torvalds   mm: get rid of vm...
160
  		mm, mm->mmap, (long long) mm->vmacache_seqnum, mm->task_size,
31c9afa6d   Sasha Levin   mm: introduce VM_...
161
162
163
164
165
166
  #ifdef CONFIG_MMU
  		mm->get_unmapped_area,
  #endif
  		mm->mmap_base, mm->mmap_legacy_base, mm->highest_vm_end,
  		mm->pgd, atomic_read(&mm->mm_users),
  		atomic_read(&mm->mm_count),
af5b0f6a0   Kirill A. Shutemov   mm: consolidate p...
167
  		mm_pgtables_bytes(mm),
31c9afa6d   Sasha Levin   mm: introduce VM_...
168
169
  		mm->map_count,
  		mm->hiwater_rss, mm->hiwater_vm, mm->total_vm, mm->locked_vm,
846383359   Konstantin Khlebnikov   mm: rework virtua...
170
  		mm->pinned_vm, mm->data_vm, mm->exec_vm, mm->stack_vm,
31c9afa6d   Sasha Levin   mm: introduce VM_...
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
  		mm->start_code, mm->end_code, mm->start_data, mm->end_data,
  		mm->start_brk, mm->brk, mm->start_stack,
  		mm->arg_start, mm->arg_end, mm->env_start, mm->env_end,
  		mm->binfmt, mm->flags, mm->core_state,
  #ifdef CONFIG_AIO
  		mm->ioctx_table,
  #endif
  #ifdef CONFIG_MEMCG
  		mm->owner,
  #endif
  		mm->exe_file,
  #ifdef CONFIG_MMU_NOTIFIER
  		mm->mmu_notifier_mm,
  #endif
  #ifdef CONFIG_NUMA_BALANCING
  		mm->numa_next_scan, mm->numa_scan_offset, mm->numa_scan_seq,
  #endif
16af97dc5   Nadav Amit   mm: migrate: prev...
188
  		atomic_read(&mm->tlb_flush_pending),
b8eceeb99   Vlastimil Babka   mm, debug: replac...
189
190
  		mm->def_flags, &mm->def_flags
  	);
31c9afa6d   Sasha Levin   mm: introduce VM_...
191
  }
82742a3a5   Sasha Levin   mm: move debug co...
192
  #endif		/* CONFIG_DEBUG_VM */