Blame view

mm/debug.c 4.21 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
  {
9996f05ea   Kirill A. Shutemov   mm: clarify why w...
41
42
43
44
45
  	/*
  	 * Avoid VM_BUG_ON() in page_mapcount().
  	 * page->_mapcount space in struct page is used by sl[aou]b pages to
  	 * encode own info.
  	 */
4d35427ad   Kirill A. Shutemov   mm: avoid endless...
46
  	int mapcount = PageSlab(page) ? 0 : page_mapcount(page);
53f9263ba   Kirill A. Shutemov   mm: rework mapcou...
47
  	pr_emerg("page:%p count:%d mapcount:%d mapping:%p index:%#lx",
4d35427ad   Kirill A. Shutemov   mm: avoid endless...
48
49
  		  page, page_ref_count(page), mapcount,
  		  page->mapping, page_to_pgoff(page));
53f9263ba   Kirill A. Shutemov   mm: rework mapcou...
50
51
52
53
  	if (PageCompound(page))
  		pr_cont(" compound_mapcount: %d", compound_mapcount(page));
  	pr_cont("
  ");
edf14cdbf   Vlastimil Babka   mm, printk: intro...
54
  	BUILD_BUG_ON(ARRAY_SIZE(pageflag_names) != __NR_PAGEFLAGS + 1);
ff8e81163   Vlastimil Babka   mm, debug: move b...
55

b8eceeb99   Vlastimil Babka   mm, debug: replac...
56
57
  	pr_emerg("flags: %#lx(%pGp)
  ", page->flags, &page->flags);
46e8a3a08   Vlastimil Babka   mm, debug: print ...
58
59
60
  	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...
61
62
63
  	if (reason)
  		pr_alert("page dumped because: %s
  ", reason);
b8eceeb99   Vlastimil Babka   mm, debug: replac...
64

9edad6ea0   Johannes Weiner   mm: move page->me...
65
66
67
68
69
  #ifdef CONFIG_MEMCG
  	if (page->mem_cgroup)
  		pr_alert("page->mem_cgroup:%p
  ", page->mem_cgroup);
  #endif
82742a3a5   Sasha Levin   mm: move debug co...
70
71
72
73
  }
  
  void dump_page(struct page *page, const char *reason)
  {
ff8e81163   Vlastimil Babka   mm, debug: move b...
74
  	__dump_page(page, reason);
4e462112e   Vlastimil Babka   mm, page_owner: d...
75
  	dump_page_owner(page);
82742a3a5   Sasha Levin   mm: move debug co...
76
77
78
79
  }
  EXPORT_SYMBOL(dump_page);
  
  #ifdef CONFIG_DEBUG_VM
82742a3a5   Sasha Levin   mm: move debug co...
80
81
  void dump_vma(const struct vm_area_struct *vma)
  {
7a82ca0d6   Andrew Morton   mm/debug.c: use p...
82
83
  	pr_emerg("vma %p start %p end %p
  "
82742a3a5   Sasha Levin   mm: move debug co...
84
85
86
87
  		"next %p prev %p mm %p
  "
  		"prot %lx anon_vma %p vm_ops %p
  "
b8eceeb99   Vlastimil Babka   mm, debug: replac...
88
89
90
91
  		"pgoff %lx file %p private_data %p
  "
  		"flags: %#lx(%pGv)
  ",
82742a3a5   Sasha Levin   mm: move debug co...
92
93
94
95
  		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...
96
97
  		vma->vm_file, vma->vm_private_data,
  		vma->vm_flags, &vma->vm_flags);
82742a3a5   Sasha Levin   mm: move debug co...
98
99
  }
  EXPORT_SYMBOL(dump_vma);
31c9afa6d   Sasha Levin   mm: introduce VM_...
100
101
  void dump_mm(const struct mm_struct *mm)
  {
06274364e   Linus Torvalds   mm: get rid of vm...
102
103
  	pr_emerg("mm %p mmap %p seqnum %llu task_size %lu
  "
31c9afa6d   Sasha Levin   mm: introduce VM_...
104
105
106
107
108
109
  #ifdef CONFIG_MMU
  		"get_unmapped_area %p
  "
  #endif
  		"mmap_base %lu mmap_legacy_base %lu highest_vm_end %lu
  "
dc6c9a35b   Kirill A. Shutemov   mm: account pmd p...
110
111
  		"pgd %p mm_users %d mm_count %d nr_ptes %lu nr_pmds %lu map_count %d
  "
31c9afa6d   Sasha Levin   mm: introduce VM_...
112
113
  		"hiwater_rss %lx hiwater_vm %lx total_vm %lx locked_vm %lx
  "
846383359   Konstantin Khlebnikov   mm: rework virtua...
114
115
  		"pinned_vm %lx data_vm %lx exec_vm %lx stack_vm %lx
  "
31c9afa6d   Sasha Levin   mm: introduce VM_...
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
  		"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
  "
  		"binfmt %p flags %lx core_state %p
  "
  #ifdef CONFIG_AIO
  		"ioctx_table %p
  "
  #endif
  #ifdef CONFIG_MEMCG
  		"owner %p "
  #endif
  		"exe_file %p
  "
  #ifdef CONFIG_MMU_NOTIFIER
  		"mmu_notifier_mm %p
  "
  #endif
  #ifdef CONFIG_NUMA_BALANCING
  		"numa_next_scan %lu numa_scan_offset %lu numa_scan_seq %d
  "
  #endif
31c9afa6d   Sasha Levin   mm: introduce VM_...
141
142
  		"tlb_flush_pending %d
  "
b8eceeb99   Vlastimil Babka   mm, debug: replac...
143
144
  		"def_flags: %#lx(%pGv)
  ",
31c9afa6d   Sasha Levin   mm: introduce VM_...
145

06274364e   Linus Torvalds   mm: get rid of vm...
146
  		mm, mm->mmap, (long long) mm->vmacache_seqnum, mm->task_size,
31c9afa6d   Sasha Levin   mm: introduce VM_...
147
148
149
150
151
152
153
  #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),
  		atomic_long_read((atomic_long_t *)&mm->nr_ptes),
dc6c9a35b   Kirill A. Shutemov   mm: account pmd p...
154
  		mm_nr_pmds((struct mm_struct *)mm),
31c9afa6d   Sasha Levin   mm: introduce VM_...
155
156
  		mm->map_count,
  		mm->hiwater_rss, mm->hiwater_vm, mm->total_vm, mm->locked_vm,
846383359   Konstantin Khlebnikov   mm: rework virtua...
157
  		mm->pinned_vm, mm->data_vm, mm->exec_vm, mm->stack_vm,
31c9afa6d   Sasha Levin   mm: introduce VM_...
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
  		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...
175
  		atomic_read(&mm->tlb_flush_pending),
b8eceeb99   Vlastimil Babka   mm, debug: replac...
176
177
  		mm->def_flags, &mm->def_flags
  	);
31c9afa6d   Sasha Levin   mm: introduce VM_...
178
  }
82742a3a5   Sasha Levin   mm: move debug co...
179
  #endif		/* CONFIG_DEBUG_VM */