blob: 57abca62d4dba3e8b4302bc19850980e40f7ebcb [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
Joonsoo Kim48c96a32014-12-12 16:56:01 -080028static bool page_owner_disabled = true;
Vlastimil Babka7dd80b82016-03-15 14:56:12 -070029DEFINE_STATIC_KEY_FALSE(page_owner_inited);
Joonsoo Kim48c96a32014-12-12 16:56:01 -080030
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070031static depot_stack_handle_t dummy_handle;
32static depot_stack_handle_t failure_handle;
Vlastimil Babkadab4ead2017-09-06 16:20:44 -070033static depot_stack_handle_t early_handle;
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070034
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
45 return 0;
46}
47early_param("page_owner", early_page_owner_param);
48
49static bool need_page_owner(void)
50{
51 if (page_owner_disabled)
52 return false;
53
54 return true;
55}
56
Vlastimil Babkadab4ead2017-09-06 16:20:44 -070057static __always_inline depot_stack_handle_t create_dummy_stack(void)
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070058{
59 unsigned long entries[4];
60 struct stack_trace dummy;
61
62 dummy.nr_entries = 0;
63 dummy.max_entries = ARRAY_SIZE(entries);
64 dummy.entries = &entries[0];
65 dummy.skip = 0;
66
67 save_stack_trace(&dummy);
Vlastimil Babkadab4ead2017-09-06 16:20:44 -070068 return depot_save_stack(&dummy, GFP_KERNEL);
69}
70
71static noinline void register_dummy_stack(void)
72{
73 dummy_handle = create_dummy_stack();
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070074}
75
76static noinline void register_failure_stack(void)
77{
Vlastimil Babkadab4ead2017-09-06 16:20:44 -070078 failure_handle = create_dummy_stack();
79}
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070080
Vlastimil Babkadab4ead2017-09-06 16:20:44 -070081static noinline void register_early_stack(void)
82{
83 early_handle = create_dummy_stack();
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070084}
85
Joonsoo Kim48c96a32014-12-12 16:56:01 -080086static void init_page_owner(void)
87{
88 if (page_owner_disabled)
89 return;
90
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070091 register_dummy_stack();
92 register_failure_stack();
Vlastimil Babkadab4ead2017-09-06 16:20:44 -070093 register_early_stack();
Vlastimil Babka7dd80b82016-03-15 14:56:12 -070094 static_branch_enable(&page_owner_inited);
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -080095 init_early_allocated_pages();
Joonsoo Kim48c96a32014-12-12 16:56:01 -080096}
97
98struct page_ext_operations page_owner_ops = {
Joonsoo Kim9300d8d2016-10-07 16:58:30 -070099 .size = sizeof(struct page_owner),
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800100 .need = need_page_owner,
101 .init = init_page_owner,
102};
103
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700104static inline struct page_owner *get_page_owner(struct page_ext *page_ext)
105{
106 return (void *)page_ext + page_owner_ops.offset;
107}
108
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800109void __reset_page_owner(struct page *page, unsigned int order)
110{
111 int i;
112 struct page_ext *page_ext;
113
114 for (i = 0; i < (1 << order); i++) {
115 page_ext = lookup_page_ext(page + i);
Yang Shif86e4272016-06-03 14:55:38 -0700116 if (unlikely(!page_ext))
117 continue;
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800118 __clear_bit(PAGE_EXT_OWNER, &page_ext->flags);
119 }
120}
121
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700122static inline bool check_recursive_alloc(struct stack_trace *trace,
123 unsigned long ip)
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800124{
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700125 int i, count;
Yang Shif86e4272016-06-03 14:55:38 -0700126
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700127 if (!trace->nr_entries)
128 return false;
129
130 for (i = 0, count = 0; i < trace->nr_entries; i++) {
131 if (trace->entries[i] == ip && ++count == 2)
132 return true;
133 }
134
135 return false;
136}
137
138static noinline depot_stack_handle_t save_stack(gfp_t flags)
139{
140 unsigned long entries[PAGE_OWNER_STACK_DEPTH];
Sergei Rogachev94f759d62015-02-11 15:28:34 -0800141 struct stack_trace trace = {
142 .nr_entries = 0,
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700143 .entries = entries,
144 .max_entries = PAGE_OWNER_STACK_DEPTH,
Prakash Gupta5f48f0b2017-09-13 16:28:35 -0700145 .skip = 2
Sergei Rogachev94f759d62015-02-11 15:28:34 -0800146 };
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700147 depot_stack_handle_t handle;
148
149 save_stack_trace(&trace);
150 if (trace.nr_entries != 0 &&
151 trace.entries[trace.nr_entries-1] == ULONG_MAX)
152 trace.nr_entries--;
153
154 /*
155 * We need to check recursion here because our request to stackdepot
156 * could trigger memory allocation to save new entry. New memory
157 * allocation would reach here and call depot_save_stack() again
158 * if we don't catch it. There is still not enough memory in stackdepot
159 * so it would try to allocate memory again and loop forever.
160 */
161 if (check_recursive_alloc(&trace, _RET_IP_))
162 return dummy_handle;
163
164 handle = depot_save_stack(&trace, flags);
165 if (!handle)
166 handle = failure_handle;
167
168 return handle;
169}
170
Vlastimil Babkadab4ead2017-09-06 16:20:44 -0700171static inline void __set_page_owner_handle(struct page_ext *page_ext,
172 depot_stack_handle_t handle, unsigned int order, gfp_t gfp_mask)
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700173{
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700174 struct page_owner *page_owner;
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800175
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700176 page_owner = get_page_owner(page_ext);
Vlastimil Babkadab4ead2017-09-06 16:20:44 -0700177 page_owner->handle = handle;
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700178 page_owner->order = order;
179 page_owner->gfp_mask = gfp_mask;
180 page_owner->last_migrate_reason = -1;
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800181
182 __set_bit(PAGE_EXT_OWNER, &page_ext->flags);
183}
184
Vlastimil Babkadab4ead2017-09-06 16:20:44 -0700185noinline void __set_page_owner(struct page *page, unsigned int order,
186 gfp_t gfp_mask)
187{
188 struct page_ext *page_ext = lookup_page_ext(page);
189 depot_stack_handle_t handle;
190
191 if (unlikely(!page_ext))
192 return;
193
194 handle = save_stack(gfp_mask);
195 __set_page_owner_handle(page_ext, handle, order, gfp_mask);
196}
197
Vlastimil Babka7cd12b42016-03-15 14:56:18 -0700198void __set_page_owner_migrate_reason(struct page *page, int reason)
199{
200 struct page_ext *page_ext = lookup_page_ext(page);
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700201 struct page_owner *page_owner;
202
Yang Shif86e4272016-06-03 14:55:38 -0700203 if (unlikely(!page_ext))
204 return;
Vlastimil Babka7cd12b42016-03-15 14:56:18 -0700205
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700206 page_owner = get_page_owner(page_ext);
207 page_owner->last_migrate_reason = reason;
Vlastimil Babka7cd12b42016-03-15 14:56:18 -0700208}
209
Joonsoo Kima9627bc2016-07-26 15:23:49 -0700210void __split_page_owner(struct page *page, unsigned int order)
Joonsoo Kime2cfc912015-07-17 16:24:18 -0700211{
Joonsoo Kima9627bc2016-07-26 15:23:49 -0700212 int i;
Joonsoo Kime2cfc912015-07-17 16:24:18 -0700213 struct page_ext *page_ext = lookup_page_ext(page);
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700214 struct page_owner *page_owner;
Joonsoo Kime2cfc912015-07-17 16:24:18 -0700215
Joonsoo Kima9627bc2016-07-26 15:23:49 -0700216 if (unlikely(!page_ext))
217 return;
218
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700219 page_owner = get_page_owner(page_ext);
220 page_owner->order = 0;
Joonsoo Kima9627bc2016-07-26 15:23:49 -0700221 for (i = 1; i < (1 << order); i++)
222 __copy_page_owner(page, page + i);
Joonsoo Kime2cfc912015-07-17 16:24:18 -0700223}
224
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700225void __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);
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700229 struct page_owner *old_page_owner, *new_page_owner;
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700230
Yang Shif86e4272016-06-03 14:55:38 -0700231 if (unlikely(!old_ext || !new_ext))
232 return;
233
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700234 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;
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700241
242 /*
243 * We don't clear the bit on the oldpage as it's going to be freed
244 * after migration. Until then, the info can be useful in case of
245 * a bug, and the overal stats will be off a bit only temporarily.
246 * Also, migrate_misplaced_transhuge_page() can still fail the
247 * migration and then we want the oldpage to retain the info. But
248 * in that case we also don't need to explicitly clear the info from
249 * the new page, which will be freed.
250 */
251 __set_bit(PAGE_EXT_OWNER, &new_ext->flags);
252}
253
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700254void pagetypeinfo_showmixedcount_print(struct seq_file *m,
255 pg_data_t *pgdat, struct zone *zone)
256{
257 struct page *page;
258 struct page_ext *page_ext;
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700259 struct page_owner *page_owner;
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700260 unsigned long pfn = zone->zone_start_pfn, block_end_pfn;
261 unsigned long end_pfn = pfn + zone->spanned_pages;
262 unsigned long count[MIGRATE_TYPES] = { 0, };
263 int pageblock_mt, page_mt;
264 int i;
265
266 /* Scan block by block. First and last block may be incomplete */
267 pfn = zone->zone_start_pfn;
268
269 /*
270 * Walk the zone in pageblock_nr_pages steps. If a page block spans
271 * a zone boundary, it will be double counted between zones. This does
272 * not matter as the mixed block count will still be correct
273 */
274 for (; pfn < end_pfn; ) {
275 if (!pfn_valid(pfn)) {
276 pfn = ALIGN(pfn + 1, MAX_ORDER_NR_PAGES);
277 continue;
278 }
279
280 block_end_pfn = ALIGN(pfn + 1, pageblock_nr_pages);
281 block_end_pfn = min(block_end_pfn, end_pfn);
282
283 page = pfn_to_page(pfn);
284 pageblock_mt = get_pageblock_migratetype(page);
285
286 for (; pfn < block_end_pfn; pfn++) {
287 if (!pfn_valid_within(pfn))
288 continue;
289
290 page = pfn_to_page(pfn);
291
292 if (page_zone(page) != zone)
293 continue;
294
295 if (PageBuddy(page)) {
Vinayak Menon727c0802017-07-10 15:49:17 -0700296 unsigned long freepage_order;
297
298 freepage_order = page_order_unsafe(page);
299 if (freepage_order < MAX_ORDER)
300 pfn += (1UL << freepage_order) - 1;
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700301 continue;
302 }
303
304 if (PageReserved(page))
305 continue;
306
307 page_ext = lookup_page_ext(page);
308 if (unlikely(!page_ext))
309 continue;
310
311 if (!test_bit(PAGE_EXT_OWNER, &page_ext->flags))
312 continue;
313
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700314 page_owner = get_page_owner(page_ext);
315 page_mt = gfpflags_to_migratetype(
316 page_owner->gfp_mask);
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700317 if (pageblock_mt != page_mt) {
318 if (is_migrate_cma(pageblock_mt))
319 count[MIGRATE_MOVABLE]++;
320 else
321 count[pageblock_mt]++;
322
323 pfn = block_end_pfn;
324 break;
325 }
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700326 pfn += (1UL << page_owner->order) - 1;
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700327 }
328 }
329
330 /* Print counts */
331 seq_printf(m, "Node %d, zone %8s ", pgdat->node_id, zone->name);
332 for (i = 0; i < MIGRATE_TYPES; i++)
333 seq_printf(m, "%12lu ", count[i]);
334 seq_putc(m, '\n');
335}
336
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800337static ssize_t
338print_page_owner(char __user *buf, size_t count, unsigned long pfn,
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700339 struct page *page, struct page_owner *page_owner,
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700340 depot_stack_handle_t handle)
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800341{
342 int ret;
343 int pageblock_mt, page_mt;
344 char *kbuf;
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700345 unsigned long entries[PAGE_OWNER_STACK_DEPTH];
Sergei Rogachev94f759d62015-02-11 15:28:34 -0800346 struct stack_trace trace = {
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700347 .nr_entries = 0,
348 .entries = entries,
349 .max_entries = PAGE_OWNER_STACK_DEPTH,
350 .skip = 0
Sergei Rogachev94f759d62015-02-11 15:28:34 -0800351 };
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800352
353 kbuf = kmalloc(count, GFP_KERNEL);
354 if (!kbuf)
355 return -ENOMEM;
356
357 ret = snprintf(kbuf, count,
Vlastimil Babka60f30352016-03-15 14:56:08 -0700358 "Page allocated via order %u, mask %#x(%pGg)\n",
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700359 page_owner->order, page_owner->gfp_mask,
360 &page_owner->gfp_mask);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800361
362 if (ret >= count)
363 goto err;
364
365 /* Print information relevant to grouping pages by mobility */
Mel Gorman0b423ca2016-05-19 17:14:27 -0700366 pageblock_mt = get_pageblock_migratetype(page);
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700367 page_mt = gfpflags_to_migratetype(page_owner->gfp_mask);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800368 ret += snprintf(kbuf + ret, count - ret,
Vlastimil Babka60f30352016-03-15 14:56:08 -0700369 "PFN %lu type %s Block %lu type %s Flags %#lx(%pGp)\n",
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800370 pfn,
Vlastimil Babka60f30352016-03-15 14:56:08 -0700371 migratetype_names[page_mt],
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800372 pfn >> pageblock_order,
Vlastimil Babka60f30352016-03-15 14:56:08 -0700373 migratetype_names[pageblock_mt],
374 page->flags, &page->flags);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800375
376 if (ret >= count)
377 goto err;
378
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700379 depot_fetch_stack(handle, &trace);
Sergei Rogachev94f759d62015-02-11 15:28:34 -0800380 ret += snprint_stack_trace(kbuf + ret, count - ret, &trace, 0);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800381 if (ret >= count)
382 goto err;
383
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700384 if (page_owner->last_migrate_reason != -1) {
Vlastimil Babka7cd12b42016-03-15 14:56:18 -0700385 ret += snprintf(kbuf + ret, count - ret,
386 "Page has been migrated, last migrate reason: %s\n",
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700387 migrate_reason_names[page_owner->last_migrate_reason]);
Vlastimil Babka7cd12b42016-03-15 14:56:18 -0700388 if (ret >= count)
389 goto err;
390 }
391
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800392 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
Vlastimil Babka4e462112016-03-15 14:56:21 -0700407void __dump_page_owner(struct page *page)
408{
409 struct page_ext *page_ext = lookup_page_ext(page);
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700410 struct page_owner *page_owner;
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700411 unsigned long entries[PAGE_OWNER_STACK_DEPTH];
Vlastimil Babka4e462112016-03-15 14:56:21 -0700412 struct stack_trace trace = {
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700413 .nr_entries = 0,
414 .entries = entries,
415 .max_entries = PAGE_OWNER_STACK_DEPTH,
416 .skip = 0
Vlastimil Babka4e462112016-03-15 14:56:21 -0700417 };
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700418 depot_stack_handle_t handle;
Sudip Mukherjee82850272016-06-24 14:50:24 -0700419 gfp_t gfp_mask;
420 int mt;
Vlastimil Babka4e462112016-03-15 14:56:21 -0700421
Yang Shif86e4272016-06-03 14:55:38 -0700422 if (unlikely(!page_ext)) {
423 pr_alert("There is not page extension available.\n");
424 return;
425 }
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700426
427 page_owner = get_page_owner(page_ext);
428 gfp_mask = page_owner->gfp_mask;
Sudip Mukherjee82850272016-06-24 14:50:24 -0700429 mt = gfpflags_to_migratetype(gfp_mask);
Yang Shif86e4272016-06-03 14:55:38 -0700430
Vlastimil Babka4e462112016-03-15 14:56:21 -0700431 if (!test_bit(PAGE_EXT_OWNER, &page_ext->flags)) {
432 pr_alert("page_owner info is not active (free page?)\n");
433 return;
434 }
435
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700436 handle = READ_ONCE(page_owner->handle);
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700437 if (!handle) {
438 pr_alert("page_owner info is not active (free page?)\n");
439 return;
440 }
441
442 depot_fetch_stack(handle, &trace);
Joe Perches756a0252016-03-17 14:19:47 -0700443 pr_alert("page allocated via order %u, migratetype %s, gfp_mask %#x(%pGg)\n",
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700444 page_owner->order, migratetype_names[mt], gfp_mask, &gfp_mask);
Vlastimil Babka4e462112016-03-15 14:56:21 -0700445 print_stack_trace(&trace, 0);
446
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700447 if (page_owner->last_migrate_reason != -1)
Vlastimil Babka4e462112016-03-15 14:56:21 -0700448 pr_alert("page has been migrated, last migrate reason: %s\n",
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700449 migrate_reason_names[page_owner->last_migrate_reason]);
Vlastimil Babka4e462112016-03-15 14:56:21 -0700450}
451
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800452static ssize_t
453read_page_owner(struct file *file, char __user *buf, size_t count, loff_t *ppos)
454{
455 unsigned long pfn;
456 struct page *page;
457 struct page_ext *page_ext;
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700458 struct page_owner *page_owner;
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700459 depot_stack_handle_t handle;
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800460
Vlastimil Babka7dd80b82016-03-15 14:56:12 -0700461 if (!static_branch_unlikely(&page_owner_inited))
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800462 return -EINVAL;
463
464 page = NULL;
465 pfn = min_low_pfn + *ppos;
466
467 /* Find a valid PFN or the start of a MAX_ORDER_NR_PAGES area */
468 while (!pfn_valid(pfn) && (pfn & (MAX_ORDER_NR_PAGES - 1)) != 0)
469 pfn++;
470
471 drain_all_pages(NULL);
472
473 /* Find an allocated page */
474 for (; pfn < max_pfn; pfn++) {
475 /*
476 * If the new page is in a new MAX_ORDER_NR_PAGES area,
477 * validate the area as existing, skip it if not
478 */
479 if ((pfn & (MAX_ORDER_NR_PAGES - 1)) == 0 && !pfn_valid(pfn)) {
480 pfn += MAX_ORDER_NR_PAGES - 1;
481 continue;
482 }
483
484 /* Check for holes within a MAX_ORDER area */
485 if (!pfn_valid_within(pfn))
486 continue;
487
488 page = pfn_to_page(pfn);
489 if (PageBuddy(page)) {
490 unsigned long freepage_order = page_order_unsafe(page);
491
492 if (freepage_order < MAX_ORDER)
493 pfn += (1UL << freepage_order) - 1;
494 continue;
495 }
496
497 page_ext = lookup_page_ext(page);
Yang Shif86e4272016-06-03 14:55:38 -0700498 if (unlikely(!page_ext))
499 continue;
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800500
501 /*
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800502 * Some pages could be missed by concurrent allocation or free,
503 * because we don't hold the zone lock.
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800504 */
505 if (!test_bit(PAGE_EXT_OWNER, &page_ext->flags))
506 continue;
507
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700508 page_owner = get_page_owner(page_ext);
509
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700510 /*
511 * Access to page_ext->handle isn't synchronous so we should
512 * be careful to access it.
513 */
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700514 handle = READ_ONCE(page_owner->handle);
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700515 if (!handle)
516 continue;
517
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800518 /* Record the next PFN to read in the file offset */
519 *ppos = (pfn - min_low_pfn) + 1;
520
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700521 return print_page_owner(buf, count, pfn, page,
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700522 page_owner, handle);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800523 }
524
525 return 0;
526}
527
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800528static void init_pages_in_zone(pg_data_t *pgdat, struct zone *zone)
529{
530 struct page *page;
531 struct page_ext *page_ext;
532 unsigned long pfn = zone->zone_start_pfn, block_end_pfn;
533 unsigned long end_pfn = pfn + zone->spanned_pages;
534 unsigned long count = 0;
535
536 /* Scan block by block. First and last block may be incomplete */
537 pfn = zone->zone_start_pfn;
538
539 /*
540 * Walk the zone in pageblock_nr_pages steps. If a page block spans
541 * a zone boundary, it will be double counted between zones. This does
542 * not matter as the mixed block count will still be correct
543 */
544 for (; pfn < end_pfn; ) {
545 if (!pfn_valid(pfn)) {
546 pfn = ALIGN(pfn + 1, MAX_ORDER_NR_PAGES);
547 continue;
548 }
549
550 block_end_pfn = ALIGN(pfn + 1, pageblock_nr_pages);
551 block_end_pfn = min(block_end_pfn, end_pfn);
552
553 page = pfn_to_page(pfn);
554
555 for (; pfn < block_end_pfn; pfn++) {
556 if (!pfn_valid_within(pfn))
557 continue;
558
559 page = pfn_to_page(pfn);
560
Joonsoo Kim9d43f5a2016-05-19 17:12:13 -0700561 if (page_zone(page) != zone)
562 continue;
563
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800564 /*
Vlastimil Babka10903022017-09-06 16:20:51 -0700565 * To avoid having to grab zone->lock, be a little
566 * careful when reading buddy page order. The only
567 * danger is that we skip too much and potentially miss
568 * some early allocated pages, which is better than
569 * heavy lock contention.
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800570 */
571 if (PageBuddy(page)) {
Vlastimil Babka10903022017-09-06 16:20:51 -0700572 unsigned long order = page_order_unsafe(page);
573
574 if (order > 0 && order < MAX_ORDER)
575 pfn += (1UL << order) - 1;
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800576 continue;
577 }
578
579 if (PageReserved(page))
580 continue;
581
582 page_ext = lookup_page_ext(page);
Yang Shif86e4272016-06-03 14:55:38 -0700583 if (unlikely(!page_ext))
584 continue;
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800585
Vlastimil Babkadab4ead2017-09-06 16:20:44 -0700586 /* Maybe overlapping zone */
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800587 if (test_bit(PAGE_EXT_OWNER, &page_ext->flags))
588 continue;
589
590 /* Found early allocated page */
Vlastimil Babkadab4ead2017-09-06 16:20:44 -0700591 __set_page_owner_handle(page_ext, early_handle, 0, 0);
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800592 count++;
593 }
Vlastimil Babka10903022017-09-06 16:20:51 -0700594 cond_resched();
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800595 }
596
597 pr_info("Node %d, zone %8s: page owner found early allocated %lu pages\n",
598 pgdat->node_id, zone->name, count);
599}
600
601static void init_zones_in_node(pg_data_t *pgdat)
602{
603 struct zone *zone;
604 struct zone *node_zones = pgdat->node_zones;
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800605
606 for (zone = node_zones; zone - node_zones < MAX_NR_ZONES; ++zone) {
607 if (!populated_zone(zone))
608 continue;
609
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800610 init_pages_in_zone(pgdat, zone);
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800611 }
612}
613
614static void init_early_allocated_pages(void)
615{
616 pg_data_t *pgdat;
617
618 drain_all_pages(NULL);
619 for_each_online_pgdat(pgdat)
620 init_zones_in_node(pgdat);
621}
622
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800623static const struct file_operations proc_page_owner_operations = {
624 .read = read_page_owner,
625};
626
627static int __init pageowner_init(void)
628{
629 struct dentry *dentry;
630
Vlastimil Babka7dd80b82016-03-15 14:56:12 -0700631 if (!static_branch_unlikely(&page_owner_inited)) {
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800632 pr_info("page_owner is disabled\n");
633 return 0;
634 }
635
636 dentry = debugfs_create_file("page_owner", S_IRUSR, NULL,
637 NULL, &proc_page_owner_operations);
638 if (IS_ERR(dentry))
639 return PTR_ERR(dentry);
640
641 return 0;
642}
Paul Gortmaker44c5af92015-05-01 21:57:34 -0400643late_initcall(pageowner_init)