blob: d2db436fd980e7c80d72b5f73dfef1b764c5e953 [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 Kim9300d8d2016-10-07 16:58:30 -070021struct page_owner {
22 unsigned int order;
23 gfp_t gfp_mask;
24 int last_migrate_reason;
25 depot_stack_handle_t handle;
26};
27
Trilok Soni65cfa9f2016-04-20 18:12:51 -070028static bool page_owner_disabled =
29 !IS_ENABLED(CONFIG_PAGE_OWNER_ENABLE_DEFAULT);
Vlastimil Babka7dd80b82016-03-15 14:56:12 -070030DEFINE_STATIC_KEY_FALSE(page_owner_inited);
Joonsoo Kim48c96a32014-12-12 16:56:01 -080031
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070032static depot_stack_handle_t dummy_handle;
33static depot_stack_handle_t failure_handle;
34
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -080035static void init_early_allocated_pages(void);
36
Joonsoo Kim48c96a32014-12-12 16:56:01 -080037static int early_page_owner_param(char *buf)
38{
39 if (!buf)
40 return -EINVAL;
41
42 if (strcmp(buf, "on") == 0)
43 page_owner_disabled = false;
44
Trilok Soni65cfa9f2016-04-20 18:12:51 -070045 if (strcmp(buf, "off") == 0)
46 page_owner_disabled = true;
47
Joonsoo Kim48c96a32014-12-12 16:56:01 -080048 return 0;
49}
50early_param("page_owner", early_page_owner_param);
51
52static bool need_page_owner(void)
53{
54 if (page_owner_disabled)
55 return false;
56
57 return true;
58}
59
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070060static noinline void register_dummy_stack(void)
61{
62 unsigned long entries[4];
63 struct stack_trace dummy;
64
65 dummy.nr_entries = 0;
66 dummy.max_entries = ARRAY_SIZE(entries);
67 dummy.entries = &entries[0];
68 dummy.skip = 0;
69
70 save_stack_trace(&dummy);
71 dummy_handle = depot_save_stack(&dummy, GFP_KERNEL);
72}
73
74static noinline void register_failure_stack(void)
75{
76 unsigned long entries[4];
77 struct stack_trace failure;
78
79 failure.nr_entries = 0;
80 failure.max_entries = ARRAY_SIZE(entries);
81 failure.entries = &entries[0];
82 failure.skip = 0;
83
84 save_stack_trace(&failure);
85 failure_handle = depot_save_stack(&failure, GFP_KERNEL);
86}
87
Joonsoo Kim48c96a32014-12-12 16:56:01 -080088static void init_page_owner(void)
89{
90 if (page_owner_disabled)
91 return;
92
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070093 register_dummy_stack();
94 register_failure_stack();
Vlastimil Babka7dd80b82016-03-15 14:56:12 -070095 static_branch_enable(&page_owner_inited);
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -080096 init_early_allocated_pages();
Joonsoo Kim48c96a32014-12-12 16:56:01 -080097}
98
99struct page_ext_operations page_owner_ops = {
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700100 .size = sizeof(struct page_owner),
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800101 .need = need_page_owner,
102 .init = init_page_owner,
103};
104
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700105static inline struct page_owner *get_page_owner(struct page_ext *page_ext)
106{
107 return (void *)page_ext + page_owner_ops.offset;
108}
109
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800110void __reset_page_owner(struct page *page, unsigned int order)
111{
112 int i;
113 struct page_ext *page_ext;
114
115 for (i = 0; i < (1 << order); i++) {
116 page_ext = lookup_page_ext(page + i);
Yang Shif86e4272016-06-03 14:55:38 -0700117 if (unlikely(!page_ext))
118 continue;
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800119 __clear_bit(PAGE_EXT_OWNER, &page_ext->flags);
120 }
121}
122
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700123static inline bool check_recursive_alloc(struct stack_trace *trace,
124 unsigned long ip)
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800125{
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700126 int i, count;
Yang Shif86e4272016-06-03 14:55:38 -0700127
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700128 if (!trace->nr_entries)
129 return false;
130
131 for (i = 0, count = 0; i < trace->nr_entries; i++) {
132 if (trace->entries[i] == ip && ++count == 2)
133 return true;
134 }
135
136 return false;
137}
138
139static noinline depot_stack_handle_t save_stack(gfp_t flags)
140{
141 unsigned long entries[PAGE_OWNER_STACK_DEPTH];
Sergei Rogachev94f759d62015-02-11 15:28:34 -0800142 struct stack_trace trace = {
143 .nr_entries = 0,
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700144 .entries = entries,
145 .max_entries = PAGE_OWNER_STACK_DEPTH,
146 .skip = 0
Sergei Rogachev94f759d62015-02-11 15:28:34 -0800147 };
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700148 depot_stack_handle_t handle;
149
150 save_stack_trace(&trace);
151 if (trace.nr_entries != 0 &&
152 trace.entries[trace.nr_entries-1] == ULONG_MAX)
153 trace.nr_entries--;
154
155 /*
156 * We need to check recursion here because our request to stackdepot
157 * could trigger memory allocation to save new entry. New memory
158 * allocation would reach here and call depot_save_stack() again
159 * if we don't catch it. There is still not enough memory in stackdepot
160 * so it would try to allocate memory again and loop forever.
161 */
162 if (check_recursive_alloc(&trace, _RET_IP_))
163 return dummy_handle;
164
165 handle = depot_save_stack(&trace, flags);
166 if (!handle)
167 handle = failure_handle;
168
169 return handle;
170}
171
172noinline void __set_page_owner(struct page *page, unsigned int order,
173 gfp_t gfp_mask)
174{
175 struct page_ext *page_ext = lookup_page_ext(page);
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700176 struct page_owner *page_owner;
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800177
Yang Shif86e4272016-06-03 14:55:38 -0700178 if (unlikely(!page_ext))
179 return;
180
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700181 page_owner = get_page_owner(page_ext);
182 page_owner->handle = save_stack(gfp_mask);
183 page_owner->order = order;
184 page_owner->gfp_mask = gfp_mask;
185 page_owner->last_migrate_reason = -1;
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800186
187 __set_bit(PAGE_EXT_OWNER, &page_ext->flags);
188}
189
Vlastimil Babka7cd12b42016-03-15 14:56:18 -0700190void __set_page_owner_migrate_reason(struct page *page, int reason)
191{
192 struct page_ext *page_ext = lookup_page_ext(page);
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700193 struct page_owner *page_owner;
194
Yang Shif86e4272016-06-03 14:55:38 -0700195 if (unlikely(!page_ext))
196 return;
Vlastimil Babka7cd12b42016-03-15 14:56:18 -0700197
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700198 page_owner = get_page_owner(page_ext);
199 page_owner->last_migrate_reason = reason;
Vlastimil Babka7cd12b42016-03-15 14:56:18 -0700200}
201
Joonsoo Kima9627bc2016-07-26 15:23:49 -0700202void __split_page_owner(struct page *page, unsigned int order)
Joonsoo Kime2cfc912015-07-17 16:24:18 -0700203{
Joonsoo Kima9627bc2016-07-26 15:23:49 -0700204 int i;
Joonsoo Kime2cfc912015-07-17 16:24:18 -0700205 struct page_ext *page_ext = lookup_page_ext(page);
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700206 struct page_owner *page_owner;
Joonsoo Kime2cfc912015-07-17 16:24:18 -0700207
Joonsoo Kima9627bc2016-07-26 15:23:49 -0700208 if (unlikely(!page_ext))
209 return;
210
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700211 page_owner = get_page_owner(page_ext);
212 page_owner->order = 0;
Joonsoo Kima9627bc2016-07-26 15:23:49 -0700213 for (i = 1; i < (1 << order); i++)
214 __copy_page_owner(page, page + i);
Joonsoo Kime2cfc912015-07-17 16:24:18 -0700215}
216
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700217void __copy_page_owner(struct page *oldpage, struct page *newpage)
218{
219 struct page_ext *old_ext = lookup_page_ext(oldpage);
220 struct page_ext *new_ext = lookup_page_ext(newpage);
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700221 struct page_owner *old_page_owner, *new_page_owner;
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700222
Yang Shif86e4272016-06-03 14:55:38 -0700223 if (unlikely(!old_ext || !new_ext))
224 return;
225
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700226 old_page_owner = get_page_owner(old_ext);
227 new_page_owner = get_page_owner(new_ext);
228 new_page_owner->order = old_page_owner->order;
229 new_page_owner->gfp_mask = old_page_owner->gfp_mask;
230 new_page_owner->last_migrate_reason =
231 old_page_owner->last_migrate_reason;
232 new_page_owner->handle = old_page_owner->handle;
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700233
234 /*
235 * We don't clear the bit on the oldpage as it's going to be freed
236 * after migration. Until then, the info can be useful in case of
237 * a bug, and the overal stats will be off a bit only temporarily.
238 * Also, migrate_misplaced_transhuge_page() can still fail the
239 * migration and then we want the oldpage to retain the info. But
240 * in that case we also don't need to explicitly clear the info from
241 * the new page, which will be freed.
242 */
243 __set_bit(PAGE_EXT_OWNER, &new_ext->flags);
244}
245
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700246void pagetypeinfo_showmixedcount_print(struct seq_file *m,
247 pg_data_t *pgdat, struct zone *zone)
248{
249 struct page *page;
250 struct page_ext *page_ext;
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700251 struct page_owner *page_owner;
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700252 unsigned long pfn = zone->zone_start_pfn, block_end_pfn;
253 unsigned long end_pfn = pfn + zone->spanned_pages;
254 unsigned long count[MIGRATE_TYPES] = { 0, };
255 int pageblock_mt, page_mt;
256 int i;
257
258 /* Scan block by block. First and last block may be incomplete */
259 pfn = zone->zone_start_pfn;
260
261 /*
262 * Walk the zone in pageblock_nr_pages steps. If a page block spans
263 * a zone boundary, it will be double counted between zones. This does
264 * not matter as the mixed block count will still be correct
265 */
266 for (; pfn < end_pfn; ) {
267 if (!pfn_valid(pfn)) {
268 pfn = ALIGN(pfn + 1, MAX_ORDER_NR_PAGES);
269 continue;
270 }
271
272 block_end_pfn = ALIGN(pfn + 1, pageblock_nr_pages);
273 block_end_pfn = min(block_end_pfn, end_pfn);
274
275 page = pfn_to_page(pfn);
276 pageblock_mt = get_pageblock_migratetype(page);
277
278 for (; pfn < block_end_pfn; pfn++) {
279 if (!pfn_valid_within(pfn))
280 continue;
281
282 page = pfn_to_page(pfn);
283
284 if (page_zone(page) != zone)
285 continue;
286
287 if (PageBuddy(page)) {
288 pfn += (1UL << page_order(page)) - 1;
289 continue;
290 }
291
292 if (PageReserved(page))
293 continue;
294
295 page_ext = lookup_page_ext(page);
296 if (unlikely(!page_ext))
297 continue;
298
299 if (!test_bit(PAGE_EXT_OWNER, &page_ext->flags))
300 continue;
301
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700302 page_owner = get_page_owner(page_ext);
303 page_mt = gfpflags_to_migratetype(
304 page_owner->gfp_mask);
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700305 if (pageblock_mt != page_mt) {
306 if (is_migrate_cma(pageblock_mt))
307 count[MIGRATE_MOVABLE]++;
308 else
309 count[pageblock_mt]++;
310
311 pfn = block_end_pfn;
312 break;
313 }
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700314 pfn += (1UL << page_owner->order) - 1;
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700315 }
316 }
317
318 /* Print counts */
319 seq_printf(m, "Node %d, zone %8s ", pgdat->node_id, zone->name);
320 for (i = 0; i < MIGRATE_TYPES; i++)
321 seq_printf(m, "%12lu ", count[i]);
322 seq_putc(m, '\n');
323}
324
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800325static ssize_t
326print_page_owner(char __user *buf, size_t count, unsigned long pfn,
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700327 struct page *page, struct page_owner *page_owner,
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700328 depot_stack_handle_t handle)
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800329{
330 int ret;
331 int pageblock_mt, page_mt;
332 char *kbuf;
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700333 unsigned long entries[PAGE_OWNER_STACK_DEPTH];
Sergei Rogachev94f759d62015-02-11 15:28:34 -0800334 struct stack_trace trace = {
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700335 .nr_entries = 0,
336 .entries = entries,
337 .max_entries = PAGE_OWNER_STACK_DEPTH,
338 .skip = 0
Sergei Rogachev94f759d62015-02-11 15:28:34 -0800339 };
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800340
341 kbuf = kmalloc(count, GFP_KERNEL);
342 if (!kbuf)
343 return -ENOMEM;
344
345 ret = snprintf(kbuf, count,
Vlastimil Babka60f30352016-03-15 14:56:08 -0700346 "Page allocated via order %u, mask %#x(%pGg)\n",
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700347 page_owner->order, page_owner->gfp_mask,
348 &page_owner->gfp_mask);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800349
350 if (ret >= count)
351 goto err;
352
353 /* Print information relevant to grouping pages by mobility */
Mel Gorman0b423ca2016-05-19 17:14:27 -0700354 pageblock_mt = get_pageblock_migratetype(page);
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700355 page_mt = gfpflags_to_migratetype(page_owner->gfp_mask);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800356 ret += snprintf(kbuf + ret, count - ret,
Vlastimil Babka60f30352016-03-15 14:56:08 -0700357 "PFN %lu type %s Block %lu type %s Flags %#lx(%pGp)\n",
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800358 pfn,
Vlastimil Babka60f30352016-03-15 14:56:08 -0700359 migratetype_names[page_mt],
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800360 pfn >> pageblock_order,
Vlastimil Babka60f30352016-03-15 14:56:08 -0700361 migratetype_names[pageblock_mt],
362 page->flags, &page->flags);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800363
364 if (ret >= count)
365 goto err;
366
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700367 depot_fetch_stack(handle, &trace);
Sergei Rogachev94f759d62015-02-11 15:28:34 -0800368 ret += snprint_stack_trace(kbuf + ret, count - ret, &trace, 0);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800369 if (ret >= count)
370 goto err;
371
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700372 if (page_owner->last_migrate_reason != -1) {
Vlastimil Babka7cd12b42016-03-15 14:56:18 -0700373 ret += snprintf(kbuf + ret, count - ret,
374 "Page has been migrated, last migrate reason: %s\n",
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700375 migrate_reason_names[page_owner->last_migrate_reason]);
Vlastimil Babka7cd12b42016-03-15 14:56:18 -0700376 if (ret >= count)
377 goto err;
378 }
379
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800380 ret += snprintf(kbuf + ret, count - ret, "\n");
381 if (ret >= count)
382 goto err;
383
384 if (copy_to_user(buf, kbuf, ret))
385 ret = -EFAULT;
386
387 kfree(kbuf);
388 return ret;
389
390err:
391 kfree(kbuf);
392 return -ENOMEM;
393}
394
Vlastimil Babka4e462112016-03-15 14:56:21 -0700395void __dump_page_owner(struct page *page)
396{
397 struct page_ext *page_ext = lookup_page_ext(page);
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700398 struct page_owner *page_owner;
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700399 unsigned long entries[PAGE_OWNER_STACK_DEPTH];
Vlastimil Babka4e462112016-03-15 14:56:21 -0700400 struct stack_trace trace = {
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700401 .nr_entries = 0,
402 .entries = entries,
403 .max_entries = PAGE_OWNER_STACK_DEPTH,
404 .skip = 0
Vlastimil Babka4e462112016-03-15 14:56:21 -0700405 };
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700406 depot_stack_handle_t handle;
Sudip Mukherjee82850272016-06-24 14:50:24 -0700407 gfp_t gfp_mask;
408 int mt;
Vlastimil Babka4e462112016-03-15 14:56:21 -0700409
Yang Shif86e4272016-06-03 14:55:38 -0700410 if (unlikely(!page_ext)) {
411 pr_alert("There is not page extension available.\n");
412 return;
413 }
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700414
415 page_owner = get_page_owner(page_ext);
416 gfp_mask = page_owner->gfp_mask;
Sudip Mukherjee82850272016-06-24 14:50:24 -0700417 mt = gfpflags_to_migratetype(gfp_mask);
Yang Shif86e4272016-06-03 14:55:38 -0700418
Vlastimil Babka4e462112016-03-15 14:56:21 -0700419 if (!test_bit(PAGE_EXT_OWNER, &page_ext->flags)) {
420 pr_alert("page_owner info is not active (free page?)\n");
421 return;
422 }
423
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700424 handle = READ_ONCE(page_owner->handle);
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700425 if (!handle) {
426 pr_alert("page_owner info is not active (free page?)\n");
427 return;
428 }
429
430 depot_fetch_stack(handle, &trace);
Joe Perches756a025f02016-03-17 14:19:47 -0700431 pr_alert("page allocated via order %u, migratetype %s, gfp_mask %#x(%pGg)\n",
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700432 page_owner->order, migratetype_names[mt], gfp_mask, &gfp_mask);
Vlastimil Babka4e462112016-03-15 14:56:21 -0700433 print_stack_trace(&trace, 0);
434
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700435 if (page_owner->last_migrate_reason != -1)
Vlastimil Babka4e462112016-03-15 14:56:21 -0700436 pr_alert("page has been migrated, last migrate reason: %s\n",
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700437 migrate_reason_names[page_owner->last_migrate_reason]);
Vlastimil Babka4e462112016-03-15 14:56:21 -0700438}
439
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800440static ssize_t
441read_page_owner(struct file *file, char __user *buf, size_t count, loff_t *ppos)
442{
443 unsigned long pfn;
444 struct page *page;
445 struct page_ext *page_ext;
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700446 struct page_owner *page_owner;
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700447 depot_stack_handle_t handle;
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800448
Vlastimil Babka7dd80b82016-03-15 14:56:12 -0700449 if (!static_branch_unlikely(&page_owner_inited))
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800450 return -EINVAL;
451
452 page = NULL;
453 pfn = min_low_pfn + *ppos;
454
455 /* Find a valid PFN or the start of a MAX_ORDER_NR_PAGES area */
456 while (!pfn_valid(pfn) && (pfn & (MAX_ORDER_NR_PAGES - 1)) != 0)
457 pfn++;
458
459 drain_all_pages(NULL);
460
461 /* Find an allocated page */
462 for (; pfn < max_pfn; pfn++) {
463 /*
464 * If the new page is in a new MAX_ORDER_NR_PAGES area,
465 * validate the area as existing, skip it if not
466 */
467 if ((pfn & (MAX_ORDER_NR_PAGES - 1)) == 0 && !pfn_valid(pfn)) {
468 pfn += MAX_ORDER_NR_PAGES - 1;
469 continue;
470 }
471
472 /* Check for holes within a MAX_ORDER area */
473 if (!pfn_valid_within(pfn))
474 continue;
475
476 page = pfn_to_page(pfn);
477 if (PageBuddy(page)) {
478 unsigned long freepage_order = page_order_unsafe(page);
479
480 if (freepage_order < MAX_ORDER)
481 pfn += (1UL << freepage_order) - 1;
482 continue;
483 }
484
485 page_ext = lookup_page_ext(page);
Yang Shif86e4272016-06-03 14:55:38 -0700486 if (unlikely(!page_ext))
487 continue;
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800488
489 /*
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800490 * Some pages could be missed by concurrent allocation or free,
491 * because we don't hold the zone lock.
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800492 */
493 if (!test_bit(PAGE_EXT_OWNER, &page_ext->flags))
494 continue;
495
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700496 page_owner = get_page_owner(page_ext);
497
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700498 /*
499 * Access to page_ext->handle isn't synchronous so we should
500 * be careful to access it.
501 */
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700502 handle = READ_ONCE(page_owner->handle);
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700503 if (!handle)
504 continue;
505
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800506 /* Record the next PFN to read in the file offset */
507 *ppos = (pfn - min_low_pfn) + 1;
508
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700509 return print_page_owner(buf, count, pfn, page,
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700510 page_owner, handle);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800511 }
512
513 return 0;
514}
515
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800516static void init_pages_in_zone(pg_data_t *pgdat, struct zone *zone)
517{
518 struct page *page;
519 struct page_ext *page_ext;
520 unsigned long pfn = zone->zone_start_pfn, block_end_pfn;
521 unsigned long end_pfn = pfn + zone->spanned_pages;
522 unsigned long count = 0;
523
524 /* Scan block by block. First and last block may be incomplete */
525 pfn = zone->zone_start_pfn;
526
527 /*
528 * Walk the zone in pageblock_nr_pages steps. If a page block spans
529 * a zone boundary, it will be double counted between zones. This does
530 * not matter as the mixed block count will still be correct
531 */
532 for (; pfn < end_pfn; ) {
533 if (!pfn_valid(pfn)) {
534 pfn = ALIGN(pfn + 1, MAX_ORDER_NR_PAGES);
535 continue;
536 }
537
538 block_end_pfn = ALIGN(pfn + 1, pageblock_nr_pages);
539 block_end_pfn = min(block_end_pfn, end_pfn);
540
541 page = pfn_to_page(pfn);
542
543 for (; pfn < block_end_pfn; pfn++) {
544 if (!pfn_valid_within(pfn))
545 continue;
546
547 page = pfn_to_page(pfn);
548
Joonsoo Kim9d43f5a2016-05-19 17:12:13 -0700549 if (page_zone(page) != zone)
550 continue;
551
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800552 /*
553 * We are safe to check buddy flag and order, because
554 * this is init stage and only single thread runs.
555 */
556 if (PageBuddy(page)) {
557 pfn += (1UL << page_order(page)) - 1;
558 continue;
559 }
560
561 if (PageReserved(page))
562 continue;
563
564 page_ext = lookup_page_ext(page);
Yang Shif86e4272016-06-03 14:55:38 -0700565 if (unlikely(!page_ext))
566 continue;
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800567
568 /* Maybe overraping zone */
569 if (test_bit(PAGE_EXT_OWNER, &page_ext->flags))
570 continue;
571
572 /* Found early allocated page */
573 set_page_owner(page, 0, 0);
574 count++;
575 }
576 }
577
578 pr_info("Node %d, zone %8s: page owner found early allocated %lu pages\n",
579 pgdat->node_id, zone->name, count);
580}
581
582static void init_zones_in_node(pg_data_t *pgdat)
583{
584 struct zone *zone;
585 struct zone *node_zones = pgdat->node_zones;
586 unsigned long flags;
587
588 for (zone = node_zones; zone - node_zones < MAX_NR_ZONES; ++zone) {
589 if (!populated_zone(zone))
590 continue;
591
592 spin_lock_irqsave(&zone->lock, flags);
593 init_pages_in_zone(pgdat, zone);
594 spin_unlock_irqrestore(&zone->lock, flags);
595 }
596}
597
598static void init_early_allocated_pages(void)
599{
600 pg_data_t *pgdat;
601
602 drain_all_pages(NULL);
603 for_each_online_pgdat(pgdat)
604 init_zones_in_node(pgdat);
605}
606
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800607static const struct file_operations proc_page_owner_operations = {
608 .read = read_page_owner,
609};
610
611static int __init pageowner_init(void)
612{
613 struct dentry *dentry;
614
Vlastimil Babka7dd80b82016-03-15 14:56:12 -0700615 if (!static_branch_unlikely(&page_owner_inited)) {
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800616 pr_info("page_owner is disabled\n");
617 return 0;
618 }
619
620 dentry = debugfs_create_file("page_owner", S_IRUSR, NULL,
621 NULL, &proc_page_owner_operations);
622 if (IS_ERR(dentry))
623 return PTR_ERR(dentry);
624
625 return 0;
626}
Paul Gortmaker44c5af92015-05-01 21:57:34 -0400627late_initcall(pageowner_init)