mm: convert pr_warning to pr_warn
[linux-2.6-block.git] / mm / page_owner.c
CommitLineData
48c96a36
JK
1#include <linux/debugfs.h>
2#include <linux/mm.h>
3#include <linux/slab.h>
4#include <linux/uaccess.h>
5#include <linux/bootmem.h>
6#include <linux/stacktrace.h>
7#include <linux/page_owner.h>
7dd80b8a 8#include <linux/jump_label.h>
7cd12b4a 9#include <linux/migrate.h>
48c96a36
JK
10#include "internal.h"
11
12static bool page_owner_disabled = true;
7dd80b8a 13DEFINE_STATIC_KEY_FALSE(page_owner_inited);
48c96a36 14
61cf5feb
JK
15static void init_early_allocated_pages(void);
16
48c96a36
JK
17static int early_page_owner_param(char *buf)
18{
19 if (!buf)
20 return -EINVAL;
21
22 if (strcmp(buf, "on") == 0)
23 page_owner_disabled = false;
24
25 return 0;
26}
27early_param("page_owner", early_page_owner_param);
28
29static bool need_page_owner(void)
30{
31 if (page_owner_disabled)
32 return false;
33
34 return true;
35}
36
37static void init_page_owner(void)
38{
39 if (page_owner_disabled)
40 return;
41
7dd80b8a 42 static_branch_enable(&page_owner_inited);
61cf5feb 43 init_early_allocated_pages();
48c96a36
JK
44}
45
46struct page_ext_operations page_owner_ops = {
47 .need = need_page_owner,
48 .init = init_page_owner,
49};
50
51void __reset_page_owner(struct page *page, unsigned int order)
52{
53 int i;
54 struct page_ext *page_ext;
55
56 for (i = 0; i < (1 << order); i++) {
57 page_ext = lookup_page_ext(page + i);
58 __clear_bit(PAGE_EXT_OWNER, &page_ext->flags);
59 }
60}
61
62void __set_page_owner(struct page *page, unsigned int order, gfp_t gfp_mask)
63{
94f759d6
SR
64 struct page_ext *page_ext = lookup_page_ext(page);
65 struct stack_trace trace = {
66 .nr_entries = 0,
67 .max_entries = ARRAY_SIZE(page_ext->trace_entries),
68 .entries = &page_ext->trace_entries[0],
69 .skip = 3,
70 };
48c96a36 71
94f759d6 72 save_stack_trace(&trace);
48c96a36
JK
73
74 page_ext->order = order;
75 page_ext->gfp_mask = gfp_mask;
94f759d6 76 page_ext->nr_entries = trace.nr_entries;
7cd12b4a 77 page_ext->last_migrate_reason = -1;
48c96a36
JK
78
79 __set_bit(PAGE_EXT_OWNER, &page_ext->flags);
80}
81
7cd12b4a
VB
82void __set_page_owner_migrate_reason(struct page *page, int reason)
83{
84 struct page_ext *page_ext = lookup_page_ext(page);
85
86 page_ext->last_migrate_reason = reason;
87}
88
e2cfc911
JK
89gfp_t __get_page_owner_gfp(struct page *page)
90{
91 struct page_ext *page_ext = lookup_page_ext(page);
92
93 return page_ext->gfp_mask;
94}
95
d435edca
VB
96void __copy_page_owner(struct page *oldpage, struct page *newpage)
97{
98 struct page_ext *old_ext = lookup_page_ext(oldpage);
99 struct page_ext *new_ext = lookup_page_ext(newpage);
100 int i;
101
102 new_ext->order = old_ext->order;
103 new_ext->gfp_mask = old_ext->gfp_mask;
104 new_ext->nr_entries = old_ext->nr_entries;
105
106 for (i = 0; i < ARRAY_SIZE(new_ext->trace_entries); i++)
107 new_ext->trace_entries[i] = old_ext->trace_entries[i];
108
109 /*
110 * We don't clear the bit on the oldpage as it's going to be freed
111 * after migration. Until then, the info can be useful in case of
112 * a bug, and the overal stats will be off a bit only temporarily.
113 * Also, migrate_misplaced_transhuge_page() can still fail the
114 * migration and then we want the oldpage to retain the info. But
115 * in that case we also don't need to explicitly clear the info from
116 * the new page, which will be freed.
117 */
118 __set_bit(PAGE_EXT_OWNER, &new_ext->flags);
119}
120
48c96a36
JK
121static ssize_t
122print_page_owner(char __user *buf, size_t count, unsigned long pfn,
123 struct page *page, struct page_ext *page_ext)
124{
125 int ret;
126 int pageblock_mt, page_mt;
127 char *kbuf;
94f759d6
SR
128 struct stack_trace trace = {
129 .nr_entries = page_ext->nr_entries,
130 .entries = &page_ext->trace_entries[0],
131 };
48c96a36
JK
132
133 kbuf = kmalloc(count, GFP_KERNEL);
134 if (!kbuf)
135 return -ENOMEM;
136
137 ret = snprintf(kbuf, count,
60f30350
VB
138 "Page allocated via order %u, mask %#x(%pGg)\n",
139 page_ext->order, page_ext->gfp_mask,
140 &page_ext->gfp_mask);
48c96a36
JK
141
142 if (ret >= count)
143 goto err;
144
145 /* Print information relevant to grouping pages by mobility */
146 pageblock_mt = get_pfnblock_migratetype(page, pfn);
147 page_mt = gfpflags_to_migratetype(page_ext->gfp_mask);
148 ret += snprintf(kbuf + ret, count - ret,
60f30350 149 "PFN %lu type %s Block %lu type %s Flags %#lx(%pGp)\n",
48c96a36 150 pfn,
60f30350 151 migratetype_names[page_mt],
48c96a36 152 pfn >> pageblock_order,
60f30350
VB
153 migratetype_names[pageblock_mt],
154 page->flags, &page->flags);
48c96a36
JK
155
156 if (ret >= count)
157 goto err;
158
94f759d6 159 ret += snprint_stack_trace(kbuf + ret, count - ret, &trace, 0);
48c96a36
JK
160 if (ret >= count)
161 goto err;
162
7cd12b4a
VB
163 if (page_ext->last_migrate_reason != -1) {
164 ret += snprintf(kbuf + ret, count - ret,
165 "Page has been migrated, last migrate reason: %s\n",
166 migrate_reason_names[page_ext->last_migrate_reason]);
167 if (ret >= count)
168 goto err;
169 }
170
48c96a36
JK
171 ret += snprintf(kbuf + ret, count - ret, "\n");
172 if (ret >= count)
173 goto err;
174
175 if (copy_to_user(buf, kbuf, ret))
176 ret = -EFAULT;
177
178 kfree(kbuf);
179 return ret;
180
181err:
182 kfree(kbuf);
183 return -ENOMEM;
184}
185
4e462112
VB
186void __dump_page_owner(struct page *page)
187{
188 struct page_ext *page_ext = lookup_page_ext(page);
189 struct stack_trace trace = {
190 .nr_entries = page_ext->nr_entries,
191 .entries = &page_ext->trace_entries[0],
192 };
193 gfp_t gfp_mask = page_ext->gfp_mask;
194 int mt = gfpflags_to_migratetype(gfp_mask);
195
196 if (!test_bit(PAGE_EXT_OWNER, &page_ext->flags)) {
197 pr_alert("page_owner info is not active (free page?)\n");
198 return;
199 }
200
201 pr_alert("page allocated via order %u, migratetype %s, "
202 "gfp_mask %#x(%pGg)\n", page_ext->order,
203 migratetype_names[mt], gfp_mask, &gfp_mask);
204 print_stack_trace(&trace, 0);
205
206 if (page_ext->last_migrate_reason != -1)
207 pr_alert("page has been migrated, last migrate reason: %s\n",
208 migrate_reason_names[page_ext->last_migrate_reason]);
209}
210
48c96a36
JK
211static ssize_t
212read_page_owner(struct file *file, char __user *buf, size_t count, loff_t *ppos)
213{
214 unsigned long pfn;
215 struct page *page;
216 struct page_ext *page_ext;
217
7dd80b8a 218 if (!static_branch_unlikely(&page_owner_inited))
48c96a36
JK
219 return -EINVAL;
220
221 page = NULL;
222 pfn = min_low_pfn + *ppos;
223
224 /* Find a valid PFN or the start of a MAX_ORDER_NR_PAGES area */
225 while (!pfn_valid(pfn) && (pfn & (MAX_ORDER_NR_PAGES - 1)) != 0)
226 pfn++;
227
228 drain_all_pages(NULL);
229
230 /* Find an allocated page */
231 for (; pfn < max_pfn; pfn++) {
232 /*
233 * If the new page is in a new MAX_ORDER_NR_PAGES area,
234 * validate the area as existing, skip it if not
235 */
236 if ((pfn & (MAX_ORDER_NR_PAGES - 1)) == 0 && !pfn_valid(pfn)) {
237 pfn += MAX_ORDER_NR_PAGES - 1;
238 continue;
239 }
240
241 /* Check for holes within a MAX_ORDER area */
242 if (!pfn_valid_within(pfn))
243 continue;
244
245 page = pfn_to_page(pfn);
246 if (PageBuddy(page)) {
247 unsigned long freepage_order = page_order_unsafe(page);
248
249 if (freepage_order < MAX_ORDER)
250 pfn += (1UL << freepage_order) - 1;
251 continue;
252 }
253
254 page_ext = lookup_page_ext(page);
255
256 /*
61cf5feb
JK
257 * Some pages could be missed by concurrent allocation or free,
258 * because we don't hold the zone lock.
48c96a36
JK
259 */
260 if (!test_bit(PAGE_EXT_OWNER, &page_ext->flags))
261 continue;
262
263 /* Record the next PFN to read in the file offset */
264 *ppos = (pfn - min_low_pfn) + 1;
265
266 return print_page_owner(buf, count, pfn, page, page_ext);
267 }
268
269 return 0;
270}
271
61cf5feb
JK
272static void init_pages_in_zone(pg_data_t *pgdat, struct zone *zone)
273{
274 struct page *page;
275 struct page_ext *page_ext;
276 unsigned long pfn = zone->zone_start_pfn, block_end_pfn;
277 unsigned long end_pfn = pfn + zone->spanned_pages;
278 unsigned long count = 0;
279
280 /* Scan block by block. First and last block may be incomplete */
281 pfn = zone->zone_start_pfn;
282
283 /*
284 * Walk the zone in pageblock_nr_pages steps. If a page block spans
285 * a zone boundary, it will be double counted between zones. This does
286 * not matter as the mixed block count will still be correct
287 */
288 for (; pfn < end_pfn; ) {
289 if (!pfn_valid(pfn)) {
290 pfn = ALIGN(pfn + 1, MAX_ORDER_NR_PAGES);
291 continue;
292 }
293
294 block_end_pfn = ALIGN(pfn + 1, pageblock_nr_pages);
295 block_end_pfn = min(block_end_pfn, end_pfn);
296
297 page = pfn_to_page(pfn);
298
299 for (; pfn < block_end_pfn; pfn++) {
300 if (!pfn_valid_within(pfn))
301 continue;
302
303 page = pfn_to_page(pfn);
304
305 /*
306 * We are safe to check buddy flag and order, because
307 * this is init stage and only single thread runs.
308 */
309 if (PageBuddy(page)) {
310 pfn += (1UL << page_order(page)) - 1;
311 continue;
312 }
313
314 if (PageReserved(page))
315 continue;
316
317 page_ext = lookup_page_ext(page);
318
319 /* Maybe overraping zone */
320 if (test_bit(PAGE_EXT_OWNER, &page_ext->flags))
321 continue;
322
323 /* Found early allocated page */
324 set_page_owner(page, 0, 0);
325 count++;
326 }
327 }
328
329 pr_info("Node %d, zone %8s: page owner found early allocated %lu pages\n",
330 pgdat->node_id, zone->name, count);
331}
332
333static void init_zones_in_node(pg_data_t *pgdat)
334{
335 struct zone *zone;
336 struct zone *node_zones = pgdat->node_zones;
337 unsigned long flags;
338
339 for (zone = node_zones; zone - node_zones < MAX_NR_ZONES; ++zone) {
340 if (!populated_zone(zone))
341 continue;
342
343 spin_lock_irqsave(&zone->lock, flags);
344 init_pages_in_zone(pgdat, zone);
345 spin_unlock_irqrestore(&zone->lock, flags);
346 }
347}
348
349static void init_early_allocated_pages(void)
350{
351 pg_data_t *pgdat;
352
353 drain_all_pages(NULL);
354 for_each_online_pgdat(pgdat)
355 init_zones_in_node(pgdat);
356}
357
48c96a36
JK
358static const struct file_operations proc_page_owner_operations = {
359 .read = read_page_owner,
360};
361
362static int __init pageowner_init(void)
363{
364 struct dentry *dentry;
365
7dd80b8a 366 if (!static_branch_unlikely(&page_owner_inited)) {
48c96a36
JK
367 pr_info("page_owner is disabled\n");
368 return 0;
369 }
370
371 dentry = debugfs_create_file("page_owner", S_IRUSR, NULL,
372 NULL, &proc_page_owner_operations);
373 if (IS_ERR(dentry))
374 return PTR_ERR(dentry);
375
376 return 0;
377}
44c5af96 378late_initcall(pageowner_init)