blob: 0f4246d109a08622b96b18f9e818064bdedd6e2b [file] [log] [blame]
Joonsoo Kim48c96a32014-12-12 16:56:01 -08001#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>
Vlastimil Babka7dd80b82016-03-15 14:56:12 -07008#include <linux/jump_label.h>
Vlastimil Babka7cd12b42016-03-15 14:56:18 -07009#include <linux/migrate.h>
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070010#include <linux/stackdepot.h>
Joonsoo Kime2f612e2016-10-07 16:58:21 -070011#include <linux/seq_file.h>
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070012
Joonsoo Kim48c96a32014-12-12 16:56:01 -080013#include "internal.h"
14
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070015/*
16 * TODO: teach PAGE_OWNER_STACK_DEPTH (__dump_page_owner and save_stack)
17 * to use off stack temporal storage
18 */
19#define PAGE_OWNER_STACK_DEPTH (16)
20
Joonsoo Kim48c96a32014-12-12 16:56:01 -080021static bool page_owner_disabled = true;
Vlastimil Babka7dd80b82016-03-15 14:56:12 -070022DEFINE_STATIC_KEY_FALSE(page_owner_inited);
Joonsoo Kim48c96a32014-12-12 16:56:01 -080023
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070024static depot_stack_handle_t dummy_handle;
25static depot_stack_handle_t failure_handle;
26
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -080027static void init_early_allocated_pages(void);
28
Joonsoo Kim48c96a32014-12-12 16:56:01 -080029static int early_page_owner_param(char *buf)
30{
31 if (!buf)
32 return -EINVAL;
33
34 if (strcmp(buf, "on") == 0)
35 page_owner_disabled = false;
36
37 return 0;
38}
39early_param("page_owner", early_page_owner_param);
40
41static bool need_page_owner(void)
42{
43 if (page_owner_disabled)
44 return false;
45
46 return true;
47}
48
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070049static noinline void register_dummy_stack(void)
50{
51 unsigned long entries[4];
52 struct stack_trace dummy;
53
54 dummy.nr_entries = 0;
55 dummy.max_entries = ARRAY_SIZE(entries);
56 dummy.entries = &entries[0];
57 dummy.skip = 0;
58
59 save_stack_trace(&dummy);
60 dummy_handle = depot_save_stack(&dummy, GFP_KERNEL);
61}
62
63static noinline void register_failure_stack(void)
64{
65 unsigned long entries[4];
66 struct stack_trace failure;
67
68 failure.nr_entries = 0;
69 failure.max_entries = ARRAY_SIZE(entries);
70 failure.entries = &entries[0];
71 failure.skip = 0;
72
73 save_stack_trace(&failure);
74 failure_handle = depot_save_stack(&failure, GFP_KERNEL);
75}
76
Joonsoo Kim48c96a32014-12-12 16:56:01 -080077static void init_page_owner(void)
78{
79 if (page_owner_disabled)
80 return;
81
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070082 register_dummy_stack();
83 register_failure_stack();
Vlastimil Babka7dd80b82016-03-15 14:56:12 -070084 static_branch_enable(&page_owner_inited);
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -080085 init_early_allocated_pages();
Joonsoo Kim48c96a32014-12-12 16:56:01 -080086}
87
88struct page_ext_operations page_owner_ops = {
89 .need = need_page_owner,
90 .init = init_page_owner,
91};
92
93void __reset_page_owner(struct page *page, unsigned int order)
94{
95 int i;
96 struct page_ext *page_ext;
97
98 for (i = 0; i < (1 << order); i++) {
99 page_ext = lookup_page_ext(page + i);
Yang Shif86e4272016-06-03 14:55:38 -0700100 if (unlikely(!page_ext))
101 continue;
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800102 __clear_bit(PAGE_EXT_OWNER, &page_ext->flags);
103 }
104}
105
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700106static inline bool check_recursive_alloc(struct stack_trace *trace,
107 unsigned long ip)
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800108{
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700109 int i, count;
Yang Shif86e4272016-06-03 14:55:38 -0700110
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700111 if (!trace->nr_entries)
112 return false;
113
114 for (i = 0, count = 0; i < trace->nr_entries; i++) {
115 if (trace->entries[i] == ip && ++count == 2)
116 return true;
117 }
118
119 return false;
120}
121
122static noinline depot_stack_handle_t save_stack(gfp_t flags)
123{
124 unsigned long entries[PAGE_OWNER_STACK_DEPTH];
Sergei Rogachev94f759d62015-02-11 15:28:34 -0800125 struct stack_trace trace = {
126 .nr_entries = 0,
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700127 .entries = entries,
128 .max_entries = PAGE_OWNER_STACK_DEPTH,
129 .skip = 0
Sergei Rogachev94f759d62015-02-11 15:28:34 -0800130 };
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700131 depot_stack_handle_t handle;
132
133 save_stack_trace(&trace);
134 if (trace.nr_entries != 0 &&
135 trace.entries[trace.nr_entries-1] == ULONG_MAX)
136 trace.nr_entries--;
137
138 /*
139 * We need to check recursion here because our request to stackdepot
140 * could trigger memory allocation to save new entry. New memory
141 * allocation would reach here and call depot_save_stack() again
142 * if we don't catch it. There is still not enough memory in stackdepot
143 * so it would try to allocate memory again and loop forever.
144 */
145 if (check_recursive_alloc(&trace, _RET_IP_))
146 return dummy_handle;
147
148 handle = depot_save_stack(&trace, flags);
149 if (!handle)
150 handle = failure_handle;
151
152 return handle;
153}
154
155noinline void __set_page_owner(struct page *page, unsigned int order,
156 gfp_t gfp_mask)
157{
158 struct page_ext *page_ext = lookup_page_ext(page);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800159
Yang Shif86e4272016-06-03 14:55:38 -0700160 if (unlikely(!page_ext))
161 return;
162
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700163 page_ext->handle = save_stack(gfp_mask);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800164 page_ext->order = order;
165 page_ext->gfp_mask = gfp_mask;
Vlastimil Babka7cd12b42016-03-15 14:56:18 -0700166 page_ext->last_migrate_reason = -1;
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800167
168 __set_bit(PAGE_EXT_OWNER, &page_ext->flags);
169}
170
Vlastimil Babka7cd12b42016-03-15 14:56:18 -0700171void __set_page_owner_migrate_reason(struct page *page, int reason)
172{
173 struct page_ext *page_ext = lookup_page_ext(page);
Yang Shif86e4272016-06-03 14:55:38 -0700174 if (unlikely(!page_ext))
175 return;
Vlastimil Babka7cd12b42016-03-15 14:56:18 -0700176
177 page_ext->last_migrate_reason = reason;
178}
179
Joonsoo Kima9627bc2016-07-26 15:23:49 -0700180void __split_page_owner(struct page *page, unsigned int order)
Joonsoo Kime2cfc912015-07-17 16:24:18 -0700181{
Joonsoo Kima9627bc2016-07-26 15:23:49 -0700182 int i;
Joonsoo Kime2cfc912015-07-17 16:24:18 -0700183 struct page_ext *page_ext = lookup_page_ext(page);
184
Joonsoo Kima9627bc2016-07-26 15:23:49 -0700185 if (unlikely(!page_ext))
186 return;
187
188 page_ext->order = 0;
189 for (i = 1; i < (1 << order); i++)
190 __copy_page_owner(page, page + i);
Joonsoo Kime2cfc912015-07-17 16:24:18 -0700191}
192
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700193void __copy_page_owner(struct page *oldpage, struct page *newpage)
194{
195 struct page_ext *old_ext = lookup_page_ext(oldpage);
196 struct page_ext *new_ext = lookup_page_ext(newpage);
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700197
Yang Shif86e4272016-06-03 14:55:38 -0700198 if (unlikely(!old_ext || !new_ext))
199 return;
200
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700201 new_ext->order = old_ext->order;
202 new_ext->gfp_mask = old_ext->gfp_mask;
Joonsoo Kima8efe1c2016-07-26 15:23:46 -0700203 new_ext->last_migrate_reason = old_ext->last_migrate_reason;
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700204 new_ext->handle = old_ext->handle;
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700205
206 /*
207 * We don't clear the bit on the oldpage as it's going to be freed
208 * after migration. Until then, the info can be useful in case of
209 * a bug, and the overal stats will be off a bit only temporarily.
210 * Also, migrate_misplaced_transhuge_page() can still fail the
211 * migration and then we want the oldpage to retain the info. But
212 * in that case we also don't need to explicitly clear the info from
213 * the new page, which will be freed.
214 */
215 __set_bit(PAGE_EXT_OWNER, &new_ext->flags);
216}
217
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700218void pagetypeinfo_showmixedcount_print(struct seq_file *m,
219 pg_data_t *pgdat, struct zone *zone)
220{
221 struct page *page;
222 struct page_ext *page_ext;
223 unsigned long pfn = zone->zone_start_pfn, block_end_pfn;
224 unsigned long end_pfn = pfn + zone->spanned_pages;
225 unsigned long count[MIGRATE_TYPES] = { 0, };
226 int pageblock_mt, page_mt;
227 int i;
228
229 /* Scan block by block. First and last block may be incomplete */
230 pfn = zone->zone_start_pfn;
231
232 /*
233 * Walk the zone in pageblock_nr_pages steps. If a page block spans
234 * a zone boundary, it will be double counted between zones. This does
235 * not matter as the mixed block count will still be correct
236 */
237 for (; pfn < end_pfn; ) {
238 if (!pfn_valid(pfn)) {
239 pfn = ALIGN(pfn + 1, MAX_ORDER_NR_PAGES);
240 continue;
241 }
242
243 block_end_pfn = ALIGN(pfn + 1, pageblock_nr_pages);
244 block_end_pfn = min(block_end_pfn, end_pfn);
245
246 page = pfn_to_page(pfn);
247 pageblock_mt = get_pageblock_migratetype(page);
248
249 for (; pfn < block_end_pfn; pfn++) {
250 if (!pfn_valid_within(pfn))
251 continue;
252
253 page = pfn_to_page(pfn);
254
255 if (page_zone(page) != zone)
256 continue;
257
258 if (PageBuddy(page)) {
259 pfn += (1UL << page_order(page)) - 1;
260 continue;
261 }
262
263 if (PageReserved(page))
264 continue;
265
266 page_ext = lookup_page_ext(page);
267 if (unlikely(!page_ext))
268 continue;
269
270 if (!test_bit(PAGE_EXT_OWNER, &page_ext->flags))
271 continue;
272
273 page_mt = gfpflags_to_migratetype(page_ext->gfp_mask);
274 if (pageblock_mt != page_mt) {
275 if (is_migrate_cma(pageblock_mt))
276 count[MIGRATE_MOVABLE]++;
277 else
278 count[pageblock_mt]++;
279
280 pfn = block_end_pfn;
281 break;
282 }
283 pfn += (1UL << page_ext->order) - 1;
284 }
285 }
286
287 /* Print counts */
288 seq_printf(m, "Node %d, zone %8s ", pgdat->node_id, zone->name);
289 for (i = 0; i < MIGRATE_TYPES; i++)
290 seq_printf(m, "%12lu ", count[i]);
291 seq_putc(m, '\n');
292}
293
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800294static ssize_t
295print_page_owner(char __user *buf, size_t count, unsigned long pfn,
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700296 struct page *page, struct page_ext *page_ext,
297 depot_stack_handle_t handle)
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800298{
299 int ret;
300 int pageblock_mt, page_mt;
301 char *kbuf;
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700302 unsigned long entries[PAGE_OWNER_STACK_DEPTH];
Sergei Rogachev94f759d62015-02-11 15:28:34 -0800303 struct stack_trace trace = {
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700304 .nr_entries = 0,
305 .entries = entries,
306 .max_entries = PAGE_OWNER_STACK_DEPTH,
307 .skip = 0
Sergei Rogachev94f759d62015-02-11 15:28:34 -0800308 };
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800309
310 kbuf = kmalloc(count, GFP_KERNEL);
311 if (!kbuf)
312 return -ENOMEM;
313
314 ret = snprintf(kbuf, count,
Vlastimil Babka60f30352016-03-15 14:56:08 -0700315 "Page allocated via order %u, mask %#x(%pGg)\n",
316 page_ext->order, page_ext->gfp_mask,
317 &page_ext->gfp_mask);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800318
319 if (ret >= count)
320 goto err;
321
322 /* Print information relevant to grouping pages by mobility */
Mel Gorman0b423ca2016-05-19 17:14:27 -0700323 pageblock_mt = get_pageblock_migratetype(page);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800324 page_mt = gfpflags_to_migratetype(page_ext->gfp_mask);
325 ret += snprintf(kbuf + ret, count - ret,
Vlastimil Babka60f30352016-03-15 14:56:08 -0700326 "PFN %lu type %s Block %lu type %s Flags %#lx(%pGp)\n",
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800327 pfn,
Vlastimil Babka60f30352016-03-15 14:56:08 -0700328 migratetype_names[page_mt],
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800329 pfn >> pageblock_order,
Vlastimil Babka60f30352016-03-15 14:56:08 -0700330 migratetype_names[pageblock_mt],
331 page->flags, &page->flags);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800332
333 if (ret >= count)
334 goto err;
335
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700336 depot_fetch_stack(handle, &trace);
Sergei Rogachev94f759d62015-02-11 15:28:34 -0800337 ret += snprint_stack_trace(kbuf + ret, count - ret, &trace, 0);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800338 if (ret >= count)
339 goto err;
340
Vlastimil Babka7cd12b42016-03-15 14:56:18 -0700341 if (page_ext->last_migrate_reason != -1) {
342 ret += snprintf(kbuf + ret, count - ret,
343 "Page has been migrated, last migrate reason: %s\n",
344 migrate_reason_names[page_ext->last_migrate_reason]);
345 if (ret >= count)
346 goto err;
347 }
348
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800349 ret += snprintf(kbuf + ret, count - ret, "\n");
350 if (ret >= count)
351 goto err;
352
353 if (copy_to_user(buf, kbuf, ret))
354 ret = -EFAULT;
355
356 kfree(kbuf);
357 return ret;
358
359err:
360 kfree(kbuf);
361 return -ENOMEM;
362}
363
Vlastimil Babka4e462112016-03-15 14:56:21 -0700364void __dump_page_owner(struct page *page)
365{
366 struct page_ext *page_ext = lookup_page_ext(page);
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700367 unsigned long entries[PAGE_OWNER_STACK_DEPTH];
Vlastimil Babka4e462112016-03-15 14:56:21 -0700368 struct stack_trace trace = {
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700369 .nr_entries = 0,
370 .entries = entries,
371 .max_entries = PAGE_OWNER_STACK_DEPTH,
372 .skip = 0
Vlastimil Babka4e462112016-03-15 14:56:21 -0700373 };
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700374 depot_stack_handle_t handle;
Sudip Mukherjee82850272016-06-24 14:50:24 -0700375 gfp_t gfp_mask;
376 int mt;
Vlastimil Babka4e462112016-03-15 14:56:21 -0700377
Yang Shif86e4272016-06-03 14:55:38 -0700378 if (unlikely(!page_ext)) {
379 pr_alert("There is not page extension available.\n");
380 return;
381 }
Sudip Mukherjee82850272016-06-24 14:50:24 -0700382 gfp_mask = page_ext->gfp_mask;
383 mt = gfpflags_to_migratetype(gfp_mask);
Yang Shif86e4272016-06-03 14:55:38 -0700384
Vlastimil Babka4e462112016-03-15 14:56:21 -0700385 if (!test_bit(PAGE_EXT_OWNER, &page_ext->flags)) {
386 pr_alert("page_owner info is not active (free page?)\n");
387 return;
388 }
389
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700390 handle = READ_ONCE(page_ext->handle);
391 if (!handle) {
392 pr_alert("page_owner info is not active (free page?)\n");
393 return;
394 }
395
396 depot_fetch_stack(handle, &trace);
Joe Perches756a025f02016-03-17 14:19:47 -0700397 pr_alert("page allocated via order %u, migratetype %s, gfp_mask %#x(%pGg)\n",
398 page_ext->order, migratetype_names[mt], gfp_mask, &gfp_mask);
Vlastimil Babka4e462112016-03-15 14:56:21 -0700399 print_stack_trace(&trace, 0);
400
401 if (page_ext->last_migrate_reason != -1)
402 pr_alert("page has been migrated, last migrate reason: %s\n",
403 migrate_reason_names[page_ext->last_migrate_reason]);
404}
405
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800406static ssize_t
407read_page_owner(struct file *file, char __user *buf, size_t count, loff_t *ppos)
408{
409 unsigned long pfn;
410 struct page *page;
411 struct page_ext *page_ext;
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700412 depot_stack_handle_t handle;
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800413
Vlastimil Babka7dd80b82016-03-15 14:56:12 -0700414 if (!static_branch_unlikely(&page_owner_inited))
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800415 return -EINVAL;
416
417 page = NULL;
418 pfn = min_low_pfn + *ppos;
419
420 /* Find a valid PFN or the start of a MAX_ORDER_NR_PAGES area */
421 while (!pfn_valid(pfn) && (pfn & (MAX_ORDER_NR_PAGES - 1)) != 0)
422 pfn++;
423
424 drain_all_pages(NULL);
425
426 /* Find an allocated page */
427 for (; pfn < max_pfn; pfn++) {
428 /*
429 * If the new page is in a new MAX_ORDER_NR_PAGES area,
430 * validate the area as existing, skip it if not
431 */
432 if ((pfn & (MAX_ORDER_NR_PAGES - 1)) == 0 && !pfn_valid(pfn)) {
433 pfn += MAX_ORDER_NR_PAGES - 1;
434 continue;
435 }
436
437 /* Check for holes within a MAX_ORDER area */
438 if (!pfn_valid_within(pfn))
439 continue;
440
441 page = pfn_to_page(pfn);
442 if (PageBuddy(page)) {
443 unsigned long freepage_order = page_order_unsafe(page);
444
445 if (freepage_order < MAX_ORDER)
446 pfn += (1UL << freepage_order) - 1;
447 continue;
448 }
449
450 page_ext = lookup_page_ext(page);
Yang Shif86e4272016-06-03 14:55:38 -0700451 if (unlikely(!page_ext))
452 continue;
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800453
454 /*
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800455 * Some pages could be missed by concurrent allocation or free,
456 * because we don't hold the zone lock.
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800457 */
458 if (!test_bit(PAGE_EXT_OWNER, &page_ext->flags))
459 continue;
460
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700461 /*
462 * Access to page_ext->handle isn't synchronous so we should
463 * be careful to access it.
464 */
465 handle = READ_ONCE(page_ext->handle);
466 if (!handle)
467 continue;
468
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800469 /* Record the next PFN to read in the file offset */
470 *ppos = (pfn - min_low_pfn) + 1;
471
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700472 return print_page_owner(buf, count, pfn, page,
473 page_ext, handle);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800474 }
475
476 return 0;
477}
478
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800479static void init_pages_in_zone(pg_data_t *pgdat, struct zone *zone)
480{
481 struct page *page;
482 struct page_ext *page_ext;
483 unsigned long pfn = zone->zone_start_pfn, block_end_pfn;
484 unsigned long end_pfn = pfn + zone->spanned_pages;
485 unsigned long count = 0;
486
487 /* Scan block by block. First and last block may be incomplete */
488 pfn = zone->zone_start_pfn;
489
490 /*
491 * Walk the zone in pageblock_nr_pages steps. If a page block spans
492 * a zone boundary, it will be double counted between zones. This does
493 * not matter as the mixed block count will still be correct
494 */
495 for (; pfn < end_pfn; ) {
496 if (!pfn_valid(pfn)) {
497 pfn = ALIGN(pfn + 1, MAX_ORDER_NR_PAGES);
498 continue;
499 }
500
501 block_end_pfn = ALIGN(pfn + 1, pageblock_nr_pages);
502 block_end_pfn = min(block_end_pfn, end_pfn);
503
504 page = pfn_to_page(pfn);
505
506 for (; pfn < block_end_pfn; pfn++) {
507 if (!pfn_valid_within(pfn))
508 continue;
509
510 page = pfn_to_page(pfn);
511
Joonsoo Kim9d43f5a2016-05-19 17:12:13 -0700512 if (page_zone(page) != zone)
513 continue;
514
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800515 /*
516 * We are safe to check buddy flag and order, because
517 * this is init stage and only single thread runs.
518 */
519 if (PageBuddy(page)) {
520 pfn += (1UL << page_order(page)) - 1;
521 continue;
522 }
523
524 if (PageReserved(page))
525 continue;
526
527 page_ext = lookup_page_ext(page);
Yang Shif86e4272016-06-03 14:55:38 -0700528 if (unlikely(!page_ext))
529 continue;
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800530
531 /* Maybe overraping zone */
532 if (test_bit(PAGE_EXT_OWNER, &page_ext->flags))
533 continue;
534
535 /* Found early allocated page */
536 set_page_owner(page, 0, 0);
537 count++;
538 }
539 }
540
541 pr_info("Node %d, zone %8s: page owner found early allocated %lu pages\n",
542 pgdat->node_id, zone->name, count);
543}
544
545static void init_zones_in_node(pg_data_t *pgdat)
546{
547 struct zone *zone;
548 struct zone *node_zones = pgdat->node_zones;
549 unsigned long flags;
550
551 for (zone = node_zones; zone - node_zones < MAX_NR_ZONES; ++zone) {
552 if (!populated_zone(zone))
553 continue;
554
555 spin_lock_irqsave(&zone->lock, flags);
556 init_pages_in_zone(pgdat, zone);
557 spin_unlock_irqrestore(&zone->lock, flags);
558 }
559}
560
561static void init_early_allocated_pages(void)
562{
563 pg_data_t *pgdat;
564
565 drain_all_pages(NULL);
566 for_each_online_pgdat(pgdat)
567 init_zones_in_node(pgdat);
568}
569
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800570static const struct file_operations proc_page_owner_operations = {
571 .read = read_page_owner,
572};
573
574static int __init pageowner_init(void)
575{
576 struct dentry *dentry;
577
Vlastimil Babka7dd80b82016-03-15 14:56:12 -0700578 if (!static_branch_unlikely(&page_owner_inited)) {
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800579 pr_info("page_owner is disabled\n");
580 return 0;
581 }
582
583 dentry = debugfs_create_file("page_owner", S_IRUSR, NULL,
584 NULL, &proc_page_owner_operations);
585 if (IS_ERR(dentry))
586 return PTR_ERR(dentry);
587
588 return 0;
589}
Paul Gortmaker44c5af92015-05-01 21:57:34 -0400590late_initcall(pageowner_init)