mm: page_owner: use kstrtobool() to parse bool option
[linux-2.6-block.git] / mm / page_owner.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
48c96a36
JK
2#include <linux/debugfs.h>
3#include <linux/mm.h>
4#include <linux/slab.h>
5#include <linux/uaccess.h>
57c8a661 6#include <linux/memblock.h>
48c96a36
JK
7#include <linux/stacktrace.h>
8#include <linux/page_owner.h>
7dd80b8a 9#include <linux/jump_label.h>
7cd12b4a 10#include <linux/migrate.h>
f2ca0b55 11#include <linux/stackdepot.h>
e2f612e6 12#include <linux/seq_file.h>
9cc7e96a 13#include <linux/sched/clock.h>
f2ca0b55 14
48c96a36
JK
15#include "internal.h"
16
f2ca0b55
JK
17/*
18 * TODO: teach PAGE_OWNER_STACK_DEPTH (__dump_page_owner and save_stack)
19 * to use off stack temporal storage
20 */
21#define PAGE_OWNER_STACK_DEPTH (16)
22
9300d8df 23struct page_owner {
6b4c54e3
AM
24 unsigned short order;
25 short last_migrate_reason;
9300d8df 26 gfp_t gfp_mask;
9300d8df 27 depot_stack_handle_t handle;
8974558f 28 depot_stack_handle_t free_handle;
9cc7e96a 29 u64 ts_nsec;
866b4852 30 u64 free_ts_nsec;
9cc7e96a 31 pid_t pid;
9300d8df
JK
32};
33
0fe9a448 34static bool page_owner_enabled = false;
7dd80b8a 35DEFINE_STATIC_KEY_FALSE(page_owner_inited);
48c96a36 36
f2ca0b55
JK
37static depot_stack_handle_t dummy_handle;
38static depot_stack_handle_t failure_handle;
dab4ead1 39static depot_stack_handle_t early_handle;
f2ca0b55 40
61cf5feb
JK
41static void init_early_allocated_pages(void);
42
1173194e 43static int __init early_page_owner_param(char *buf)
48c96a36 44{
608b5d66 45 return kstrtobool(buf, &page_owner_enabled);
48c96a36
JK
46}
47early_param("page_owner", early_page_owner_param);
48
49static bool need_page_owner(void)
50{
0fe9a448 51 return page_owner_enabled;
48c96a36
JK
52}
53
dab4ead1 54static __always_inline depot_stack_handle_t create_dummy_stack(void)
f2ca0b55
JK
55{
56 unsigned long entries[4];
af52bf6b 57 unsigned int nr_entries;
f2ca0b55 58
af52bf6b
TG
59 nr_entries = stack_trace_save(entries, ARRAY_SIZE(entries), 0);
60 return stack_depot_save(entries, nr_entries, GFP_KERNEL);
f2ca0b55
JK
61}
62
dab4ead1 63static noinline void register_dummy_stack(void)
f2ca0b55 64{
dab4ead1
VB
65 dummy_handle = create_dummy_stack();
66}
f2ca0b55 67
dab4ead1
VB
68static noinline void register_failure_stack(void)
69{
70 failure_handle = create_dummy_stack();
71}
f2ca0b55 72
dab4ead1
VB
73static noinline void register_early_stack(void)
74{
75 early_handle = create_dummy_stack();
f2ca0b55
JK
76}
77
48c96a36
JK
78static void init_page_owner(void)
79{
0fe9a448 80 if (!page_owner_enabled)
48c96a36
JK
81 return;
82
f2ca0b55
JK
83 register_dummy_stack();
84 register_failure_stack();
dab4ead1 85 register_early_stack();
7dd80b8a 86 static_branch_enable(&page_owner_inited);
61cf5feb 87 init_early_allocated_pages();
48c96a36
JK
88}
89
90struct page_ext_operations page_owner_ops = {
9300d8df 91 .size = sizeof(struct page_owner),
48c96a36
JK
92 .need = need_page_owner,
93 .init = init_page_owner,
94};
95
9300d8df
JK
96static inline struct page_owner *get_page_owner(struct page_ext *page_ext)
97{
98 return (void *)page_ext + page_owner_ops.offset;
99}
100
af52bf6b
TG
101static inline bool check_recursive_alloc(unsigned long *entries,
102 unsigned int nr_entries,
103 unsigned long ip)
48c96a36 104{
af52bf6b 105 unsigned int i;
f2ca0b55 106
af52bf6b
TG
107 for (i = 0; i < nr_entries; i++) {
108 if (entries[i] == ip)
f2ca0b55
JK
109 return true;
110 }
f2ca0b55
JK
111 return false;
112}
113
114static noinline depot_stack_handle_t save_stack(gfp_t flags)
115{
116 unsigned long entries[PAGE_OWNER_STACK_DEPTH];
f2ca0b55 117 depot_stack_handle_t handle;
af52bf6b 118 unsigned int nr_entries;
f2ca0b55 119
af52bf6b 120 nr_entries = stack_trace_save(entries, ARRAY_SIZE(entries), 2);
f2ca0b55
JK
121
122 /*
af52bf6b
TG
123 * We need to check recursion here because our request to
124 * stackdepot could trigger memory allocation to save new
125 * entry. New memory allocation would reach here and call
126 * stack_depot_save_entries() again if we don't catch it. There is
127 * still not enough memory in stackdepot so it would try to
128 * allocate memory again and loop forever.
f2ca0b55 129 */
af52bf6b 130 if (check_recursive_alloc(entries, nr_entries, _RET_IP_))
f2ca0b55
JK
131 return dummy_handle;
132
af52bf6b 133 handle = stack_depot_save(entries, nr_entries, flags);
f2ca0b55
JK
134 if (!handle)
135 handle = failure_handle;
136
137 return handle;
138}
139
8974558f
VB
140void __reset_page_owner(struct page *page, unsigned int order)
141{
142 int i;
143 struct page_ext *page_ext;
fab765c2 144 depot_stack_handle_t handle;
8974558f 145 struct page_owner *page_owner;
866b4852 146 u64 free_ts_nsec = local_clock();
8974558f 147
5556cfe8
VB
148 page_ext = lookup_page_ext(page);
149 if (unlikely(!page_ext))
150 return;
fab765c2
ST
151
152 handle = save_stack(GFP_NOWAIT | __GFP_NOWARN);
8974558f 153 for (i = 0; i < (1 << order); i++) {
fdf3bf80 154 __clear_bit(PAGE_EXT_OWNER_ALLOCATED, &page_ext->flags);
0fe9a448
VB
155 page_owner = get_page_owner(page_ext);
156 page_owner->free_handle = handle;
866b4852 157 page_owner->free_ts_nsec = free_ts_nsec;
5556cfe8 158 page_ext = page_ext_next(page_ext);
8974558f
VB
159 }
160}
161
64ea78d2 162static inline void __set_page_owner_handle(struct page_ext *page_ext,
163 depot_stack_handle_t handle,
164 unsigned int order, gfp_t gfp_mask)
f2ca0b55 165{
9300d8df 166 struct page_owner *page_owner;
7e2f2a0c 167 int i;
48c96a36 168
7e2f2a0c
VB
169 for (i = 0; i < (1 << order); i++) {
170 page_owner = get_page_owner(page_ext);
171 page_owner->handle = handle;
172 page_owner->order = order;
173 page_owner->gfp_mask = gfp_mask;
174 page_owner->last_migrate_reason = -1;
9cc7e96a
LM
175 page_owner->pid = current->pid;
176 page_owner->ts_nsec = local_clock();
7e2f2a0c 177 __set_bit(PAGE_EXT_OWNER, &page_ext->flags);
fdf3bf80 178 __set_bit(PAGE_EXT_OWNER_ALLOCATED, &page_ext->flags);
48c96a36 179
5556cfe8 180 page_ext = page_ext_next(page_ext);
7e2f2a0c 181 }
48c96a36
JK
182}
183
dab4ead1
VB
184noinline void __set_page_owner(struct page *page, unsigned int order,
185 gfp_t gfp_mask)
186{
187 struct page_ext *page_ext = lookup_page_ext(page);
188 depot_stack_handle_t handle;
189
190 if (unlikely(!page_ext))
191 return;
192
193 handle = save_stack(gfp_mask);
64ea78d2 194 __set_page_owner_handle(page_ext, handle, order, gfp_mask);
dab4ead1
VB
195}
196
7cd12b4a
VB
197void __set_page_owner_migrate_reason(struct page *page, int reason)
198{
199 struct page_ext *page_ext = lookup_page_ext(page);
9300d8df
JK
200 struct page_owner *page_owner;
201
f86e4271
YS
202 if (unlikely(!page_ext))
203 return;
7cd12b4a 204
9300d8df
JK
205 page_owner = get_page_owner(page_ext);
206 page_owner->last_migrate_reason = reason;
7cd12b4a
VB
207}
208
8fb156c9 209void __split_page_owner(struct page *page, unsigned int nr)
e2cfc911 210{
a9627bc5 211 int i;
e2cfc911 212 struct page_ext *page_ext = lookup_page_ext(page);
9300d8df 213 struct page_owner *page_owner;
a9627bc5 214
f86e4271 215 if (unlikely(!page_ext))
a9627bc5 216 return;
e2cfc911 217
8fb156c9 218 for (i = 0; i < nr; i++) {
7e2f2a0c
VB
219 page_owner = get_page_owner(page_ext);
220 page_owner->order = 0;
5556cfe8 221 page_ext = page_ext_next(page_ext);
7e2f2a0c 222 }
e2cfc911
JK
223}
224
d435edca
VB
225void __copy_page_owner(struct page *oldpage, struct page *newpage)
226{
227 struct page_ext *old_ext = lookup_page_ext(oldpage);
228 struct page_ext *new_ext = lookup_page_ext(newpage);
9300d8df 229 struct page_owner *old_page_owner, *new_page_owner;
d435edca 230
f86e4271
YS
231 if (unlikely(!old_ext || !new_ext))
232 return;
233
9300d8df
JK
234 old_page_owner = get_page_owner(old_ext);
235 new_page_owner = get_page_owner(new_ext);
236 new_page_owner->order = old_page_owner->order;
237 new_page_owner->gfp_mask = old_page_owner->gfp_mask;
238 new_page_owner->last_migrate_reason =
239 old_page_owner->last_migrate_reason;
240 new_page_owner->handle = old_page_owner->handle;
9cc7e96a
LM
241 new_page_owner->pid = old_page_owner->pid;
242 new_page_owner->ts_nsec = old_page_owner->ts_nsec;
866b4852 243 new_page_owner->free_ts_nsec = old_page_owner->ts_nsec;
d435edca
VB
244
245 /*
246 * We don't clear the bit on the oldpage as it's going to be freed
247 * after migration. Until then, the info can be useful in case of
248 * a bug, and the overal stats will be off a bit only temporarily.
249 * Also, migrate_misplaced_transhuge_page() can still fail the
250 * migration and then we want the oldpage to retain the info. But
251 * in that case we also don't need to explicitly clear the info from
252 * the new page, which will be freed.
253 */
254 __set_bit(PAGE_EXT_OWNER, &new_ext->flags);
fdf3bf80 255 __set_bit(PAGE_EXT_OWNER_ALLOCATED, &new_ext->flags);
d435edca
VB
256}
257
e2f612e6
JK
258void pagetypeinfo_showmixedcount_print(struct seq_file *m,
259 pg_data_t *pgdat, struct zone *zone)
260{
261 struct page *page;
262 struct page_ext *page_ext;
9300d8df 263 struct page_owner *page_owner;
1d2cae8e
ML
264 unsigned long pfn, block_end_pfn;
265 unsigned long end_pfn = zone_end_pfn(zone);
e2f612e6
JK
266 unsigned long count[MIGRATE_TYPES] = { 0, };
267 int pageblock_mt, page_mt;
268 int i;
269
270 /* Scan block by block. First and last block may be incomplete */
271 pfn = zone->zone_start_pfn;
272
273 /*
274 * Walk the zone in pageblock_nr_pages steps. If a page block spans
275 * a zone boundary, it will be double counted between zones. This does
276 * not matter as the mixed block count will still be correct
277 */
278 for (; pfn < end_pfn; ) {
a26ee565
QC
279 page = pfn_to_online_page(pfn);
280 if (!page) {
e2f612e6
JK
281 pfn = ALIGN(pfn + 1, MAX_ORDER_NR_PAGES);
282 continue;
283 }
284
285 block_end_pfn = ALIGN(pfn + 1, pageblock_nr_pages);
286 block_end_pfn = min(block_end_pfn, end_pfn);
287
e2f612e6
JK
288 pageblock_mt = get_pageblock_migratetype(page);
289
290 for (; pfn < block_end_pfn; pfn++) {
291 if (!pfn_valid_within(pfn))
292 continue;
293
a26ee565 294 /* The pageblock is online, no need to recheck. */
e2f612e6
JK
295 page = pfn_to_page(pfn);
296
297 if (page_zone(page) != zone)
298 continue;
299
300 if (PageBuddy(page)) {
727c080f
VM
301 unsigned long freepage_order;
302
ab130f91 303 freepage_order = buddy_order_unsafe(page);
727c080f
VM
304 if (freepage_order < MAX_ORDER)
305 pfn += (1UL << freepage_order) - 1;
e2f612e6
JK
306 continue;
307 }
308
309 if (PageReserved(page))
310 continue;
311
312 page_ext = lookup_page_ext(page);
313 if (unlikely(!page_ext))
314 continue;
315
fdf3bf80 316 if (!test_bit(PAGE_EXT_OWNER_ALLOCATED, &page_ext->flags))
e2f612e6
JK
317 continue;
318
9300d8df 319 page_owner = get_page_owner(page_ext);
01c0bfe0 320 page_mt = gfp_migratetype(page_owner->gfp_mask);
e2f612e6
JK
321 if (pageblock_mt != page_mt) {
322 if (is_migrate_cma(pageblock_mt))
323 count[MIGRATE_MOVABLE]++;
324 else
325 count[pageblock_mt]++;
326
327 pfn = block_end_pfn;
328 break;
329 }
9300d8df 330 pfn += (1UL << page_owner->order) - 1;
e2f612e6
JK
331 }
332 }
333
334 /* Print counts */
335 seq_printf(m, "Node %d, zone %8s ", pgdat->node_id, zone->name);
336 for (i = 0; i < MIGRATE_TYPES; i++)
337 seq_printf(m, "%12lu ", count[i]);
338 seq_putc(m, '\n');
339}
340
48c96a36
JK
341static ssize_t
342print_page_owner(char __user *buf, size_t count, unsigned long pfn,
9300d8df 343 struct page *page, struct page_owner *page_owner,
f2ca0b55 344 depot_stack_handle_t handle)
48c96a36 345{
af52bf6b
TG
346 int ret, pageblock_mt, page_mt;
347 unsigned long *entries;
348 unsigned int nr_entries;
48c96a36
JK
349 char *kbuf;
350
c8f61cfc 351 count = min_t(size_t, count, PAGE_SIZE);
48c96a36
JK
352 kbuf = kmalloc(count, GFP_KERNEL);
353 if (!kbuf)
354 return -ENOMEM;
355
356 ret = snprintf(kbuf, count,
866b4852 357 "Page allocated via order %u, mask %#x(%pGg), pid %d, ts %llu ns, free_ts %llu ns\n",
9300d8df 358 page_owner->order, page_owner->gfp_mask,
9cc7e96a 359 &page_owner->gfp_mask, page_owner->pid,
866b4852 360 page_owner->ts_nsec, page_owner->free_ts_nsec);
48c96a36
JK
361
362 if (ret >= count)
363 goto err;
364
365 /* Print information relevant to grouping pages by mobility */
0b423ca2 366 pageblock_mt = get_pageblock_migratetype(page);
01c0bfe0 367 page_mt = gfp_migratetype(page_owner->gfp_mask);
48c96a36 368 ret += snprintf(kbuf + ret, count - ret,
60f30350 369 "PFN %lu type %s Block %lu type %s Flags %#lx(%pGp)\n",
48c96a36 370 pfn,
60f30350 371 migratetype_names[page_mt],
48c96a36 372 pfn >> pageblock_order,
60f30350
VB
373 migratetype_names[pageblock_mt],
374 page->flags, &page->flags);
48c96a36
JK
375
376 if (ret >= count)
377 goto err;
378
af52bf6b
TG
379 nr_entries = stack_depot_fetch(handle, &entries);
380 ret += stack_trace_snprint(kbuf + ret, count - ret, entries, nr_entries, 0);
48c96a36
JK
381 if (ret >= count)
382 goto err;
383
9300d8df 384 if (page_owner->last_migrate_reason != -1) {
7cd12b4a
VB
385 ret += snprintf(kbuf + ret, count - ret,
386 "Page has been migrated, last migrate reason: %s\n",
9300d8df 387 migrate_reason_names[page_owner->last_migrate_reason]);
7cd12b4a
VB
388 if (ret >= count)
389 goto err;
390 }
391
48c96a36
JK
392 ret += snprintf(kbuf + ret, count - ret, "\n");
393 if (ret >= count)
394 goto err;
395
396 if (copy_to_user(buf, kbuf, ret))
397 ret = -EFAULT;
398
399 kfree(kbuf);
400 return ret;
401
402err:
403 kfree(kbuf);
404 return -ENOMEM;
405}
406
4e462112
VB
407void __dump_page_owner(struct page *page)
408{
409 struct page_ext *page_ext = lookup_page_ext(page);
9300d8df 410 struct page_owner *page_owner;
f2ca0b55 411 depot_stack_handle_t handle;
af52bf6b
TG
412 unsigned long *entries;
413 unsigned int nr_entries;
8285027f
SM
414 gfp_t gfp_mask;
415 int mt;
4e462112 416
f86e4271
YS
417 if (unlikely(!page_ext)) {
418 pr_alert("There is not page extension available.\n");
419 return;
420 }
9300d8df
JK
421
422 page_owner = get_page_owner(page_ext);
423 gfp_mask = page_owner->gfp_mask;
01c0bfe0 424 mt = gfp_migratetype(gfp_mask);
f86e4271 425
4e462112 426 if (!test_bit(PAGE_EXT_OWNER, &page_ext->flags)) {
37389167 427 pr_alert("page_owner info is not present (never set?)\n");
4e462112
VB
428 return;
429 }
430
fdf3bf80 431 if (test_bit(PAGE_EXT_OWNER_ALLOCATED, &page_ext->flags))
37389167
VB
432 pr_alert("page_owner tracks the page as allocated\n");
433 else
434 pr_alert("page_owner tracks the page as freed\n");
435
866b4852 436 pr_alert("page last allocated via order %u, migratetype %s, gfp_mask %#x(%pGg), pid %d, ts %llu, free_ts %llu\n",
9cc7e96a 437 page_owner->order, migratetype_names[mt], gfp_mask, &gfp_mask,
866b4852 438 page_owner->pid, page_owner->ts_nsec, page_owner->free_ts_nsec);
37389167 439
9300d8df 440 handle = READ_ONCE(page_owner->handle);
f2ca0b55 441 if (!handle) {
37389167
VB
442 pr_alert("page_owner allocation stack trace missing\n");
443 } else {
444 nr_entries = stack_depot_fetch(handle, &entries);
445 stack_trace_print(entries, nr_entries, 0);
f2ca0b55
JK
446 }
447
8974558f
VB
448 handle = READ_ONCE(page_owner->free_handle);
449 if (!handle) {
450 pr_alert("page_owner free stack trace missing\n");
451 } else {
452 nr_entries = stack_depot_fetch(handle, &entries);
453 pr_alert("page last free stack trace:\n");
454 stack_trace_print(entries, nr_entries, 0);
455 }
8974558f 456
9300d8df 457 if (page_owner->last_migrate_reason != -1)
4e462112 458 pr_alert("page has been migrated, last migrate reason: %s\n",
9300d8df 459 migrate_reason_names[page_owner->last_migrate_reason]);
4e462112
VB
460}
461
48c96a36
JK
462static ssize_t
463read_page_owner(struct file *file, char __user *buf, size_t count, loff_t *ppos)
464{
465 unsigned long pfn;
466 struct page *page;
467 struct page_ext *page_ext;
9300d8df 468 struct page_owner *page_owner;
f2ca0b55 469 depot_stack_handle_t handle;
48c96a36 470
7dd80b8a 471 if (!static_branch_unlikely(&page_owner_inited))
48c96a36
JK
472 return -EINVAL;
473
474 page = NULL;
475 pfn = min_low_pfn + *ppos;
476
477 /* Find a valid PFN or the start of a MAX_ORDER_NR_PAGES area */
478 while (!pfn_valid(pfn) && (pfn & (MAX_ORDER_NR_PAGES - 1)) != 0)
479 pfn++;
480
481 drain_all_pages(NULL);
482
483 /* Find an allocated page */
484 for (; pfn < max_pfn; pfn++) {
485 /*
486 * If the new page is in a new MAX_ORDER_NR_PAGES area,
487 * validate the area as existing, skip it if not
488 */
489 if ((pfn & (MAX_ORDER_NR_PAGES - 1)) == 0 && !pfn_valid(pfn)) {
490 pfn += MAX_ORDER_NR_PAGES - 1;
491 continue;
492 }
493
494 /* Check for holes within a MAX_ORDER area */
495 if (!pfn_valid_within(pfn))
496 continue;
497
498 page = pfn_to_page(pfn);
499 if (PageBuddy(page)) {
ab130f91 500 unsigned long freepage_order = buddy_order_unsafe(page);
48c96a36
JK
501
502 if (freepage_order < MAX_ORDER)
503 pfn += (1UL << freepage_order) - 1;
504 continue;
505 }
506
507 page_ext = lookup_page_ext(page);
f86e4271
YS
508 if (unlikely(!page_ext))
509 continue;
48c96a36
JK
510
511 /*
61cf5feb
JK
512 * Some pages could be missed by concurrent allocation or free,
513 * because we don't hold the zone lock.
48c96a36
JK
514 */
515 if (!test_bit(PAGE_EXT_OWNER, &page_ext->flags))
516 continue;
517
37389167
VB
518 /*
519 * Although we do have the info about past allocation of free
520 * pages, it's not relevant for current memory usage.
521 */
fdf3bf80 522 if (!test_bit(PAGE_EXT_OWNER_ALLOCATED, &page_ext->flags))
37389167
VB
523 continue;
524
9300d8df
JK
525 page_owner = get_page_owner(page_ext);
526
7e2f2a0c
VB
527 /*
528 * Don't print "tail" pages of high-order allocations as that
529 * would inflate the stats.
530 */
531 if (!IS_ALIGNED(pfn, 1 << page_owner->order))
532 continue;
533
f2ca0b55
JK
534 /*
535 * Access to page_ext->handle isn't synchronous so we should
536 * be careful to access it.
537 */
9300d8df 538 handle = READ_ONCE(page_owner->handle);
f2ca0b55
JK
539 if (!handle)
540 continue;
541
48c96a36
JK
542 /* Record the next PFN to read in the file offset */
543 *ppos = (pfn - min_low_pfn) + 1;
544
f2ca0b55 545 return print_page_owner(buf, count, pfn, page,
9300d8df 546 page_owner, handle);
48c96a36
JK
547 }
548
549 return 0;
550}
551
61cf5feb
JK
552static void init_pages_in_zone(pg_data_t *pgdat, struct zone *zone)
553{
6787c1da
OS
554 unsigned long pfn = zone->zone_start_pfn;
555 unsigned long end_pfn = zone_end_pfn(zone);
61cf5feb
JK
556 unsigned long count = 0;
557
61cf5feb
JK
558 /*
559 * Walk the zone in pageblock_nr_pages steps. If a page block spans
560 * a zone boundary, it will be double counted between zones. This does
561 * not matter as the mixed block count will still be correct
562 */
563 for (; pfn < end_pfn; ) {
6787c1da
OS
564 unsigned long block_end_pfn;
565
61cf5feb
JK
566 if (!pfn_valid(pfn)) {
567 pfn = ALIGN(pfn + 1, MAX_ORDER_NR_PAGES);
568 continue;
569 }
570
571 block_end_pfn = ALIGN(pfn + 1, pageblock_nr_pages);
572 block_end_pfn = min(block_end_pfn, end_pfn);
573
61cf5feb 574 for (; pfn < block_end_pfn; pfn++) {
6787c1da
OS
575 struct page *page;
576 struct page_ext *page_ext;
577
61cf5feb
JK
578 if (!pfn_valid_within(pfn))
579 continue;
580
581 page = pfn_to_page(pfn);
582
9d43f5ae
JK
583 if (page_zone(page) != zone)
584 continue;
585
61cf5feb 586 /*
10903027
VB
587 * To avoid having to grab zone->lock, be a little
588 * careful when reading buddy page order. The only
589 * danger is that we skip too much and potentially miss
590 * some early allocated pages, which is better than
591 * heavy lock contention.
61cf5feb
JK
592 */
593 if (PageBuddy(page)) {
ab130f91 594 unsigned long order = buddy_order_unsafe(page);
10903027
VB
595
596 if (order > 0 && order < MAX_ORDER)
597 pfn += (1UL << order) - 1;
61cf5feb
JK
598 continue;
599 }
600
601 if (PageReserved(page))
602 continue;
603
604 page_ext = lookup_page_ext(page);
f86e4271
YS
605 if (unlikely(!page_ext))
606 continue;
61cf5feb 607
dab4ead1 608 /* Maybe overlapping zone */
61cf5feb
JK
609 if (test_bit(PAGE_EXT_OWNER, &page_ext->flags))
610 continue;
611
612 /* Found early allocated page */
64ea78d2 613 __set_page_owner_handle(page_ext, early_handle,
7e2f2a0c 614 0, 0);
61cf5feb
JK
615 count++;
616 }
10903027 617 cond_resched();
61cf5feb
JK
618 }
619
620 pr_info("Node %d, zone %8s: page owner found early allocated %lu pages\n",
621 pgdat->node_id, zone->name, count);
622}
623
624static void init_zones_in_node(pg_data_t *pgdat)
625{
626 struct zone *zone;
627 struct zone *node_zones = pgdat->node_zones;
61cf5feb
JK
628
629 for (zone = node_zones; zone - node_zones < MAX_NR_ZONES; ++zone) {
630 if (!populated_zone(zone))
631 continue;
632
61cf5feb 633 init_pages_in_zone(pgdat, zone);
61cf5feb
JK
634 }
635}
636
637static void init_early_allocated_pages(void)
638{
639 pg_data_t *pgdat;
640
61cf5feb
JK
641 for_each_online_pgdat(pgdat)
642 init_zones_in_node(pgdat);
643}
644
48c96a36
JK
645static const struct file_operations proc_page_owner_operations = {
646 .read = read_page_owner,
647};
648
649static int __init pageowner_init(void)
650{
7dd80b8a 651 if (!static_branch_unlikely(&page_owner_inited)) {
48c96a36
JK
652 pr_info("page_owner is disabled\n");
653 return 0;
654 }
655
d9f7979c
GKH
656 debugfs_create_file("page_owner", 0400, NULL, NULL,
657 &proc_page_owner_operations);
48c96a36 658
d9f7979c 659 return 0;
48c96a36 660}
44c5af96 661late_initcall(pageowner_init)