blob: a5a8b22816ff34a49ca24c19843cb123adf07608 [file] [log] [blame]
Thomas Gleixner55716d22019-06-01 10:08:42 +02001// SPDX-License-Identifier: GPL-2.0-only
Dennis Zhou30a5b532017-06-19 19:28:31 -04002/*
3 * mm/percpu-debug.c
4 *
5 * Copyright (C) 2017 Facebook Inc.
6 * Copyright (C) 2017 Dennis Zhou <dennisz@fb.com>
7 *
Dennis Zhou30a5b532017-06-19 19:28:31 -04008 * Prints statistics about the percpu allocator and backing chunks.
9 */
10#include <linux/debugfs.h>
11#include <linux/list.h>
12#include <linux/percpu.h>
13#include <linux/seq_file.h>
14#include <linux/sort.h>
15#include <linux/vmalloc.h>
16
17#include "percpu-internal.h"
18
19#define P(X, Y) \
Dennis Zhou (Facebook)02459162017-07-15 22:23:07 -040020 seq_printf(m, " %-20s: %12lld\n", X, (long long int)Y)
Dennis Zhou30a5b532017-06-19 19:28:31 -040021
22struct percpu_stats pcpu_stats;
23struct pcpu_alloc_info pcpu_stats_ai;
24
25static int cmpint(const void *a, const void *b)
26{
27 return *(int *)a - *(int *)b;
28}
29
30/*
Dennis Zhou (Facebook)40064ae2017-07-12 11:27:32 -070031 * Iterates over all chunks to find the max nr_alloc entries.
Dennis Zhou30a5b532017-06-19 19:28:31 -040032 */
Dennis Zhou (Facebook)40064ae2017-07-12 11:27:32 -070033static int find_max_nr_alloc(void)
Dennis Zhou30a5b532017-06-19 19:28:31 -040034{
35 struct pcpu_chunk *chunk;
Dennis Zhou (Facebook)40064ae2017-07-12 11:27:32 -070036 int slot, max_nr_alloc;
Dennis Zhou30a5b532017-06-19 19:28:31 -040037
Dennis Zhou (Facebook)40064ae2017-07-12 11:27:32 -070038 max_nr_alloc = 0;
Dennis Zhou30a5b532017-06-19 19:28:31 -040039 for (slot = 0; slot < pcpu_nr_slots; slot++)
40 list_for_each_entry(chunk, &pcpu_slot[slot], list)
Dennis Zhou (Facebook)40064ae2017-07-12 11:27:32 -070041 max_nr_alloc = max(max_nr_alloc, chunk->nr_alloc);
Dennis Zhou30a5b532017-06-19 19:28:31 -040042
Dennis Zhou (Facebook)40064ae2017-07-12 11:27:32 -070043 return max_nr_alloc;
Dennis Zhou30a5b532017-06-19 19:28:31 -040044}
45
46/*
47 * Prints out chunk state. Fragmentation is considered between
48 * the beginning of the chunk to the last allocation.
Dennis Zhou (Facebook)40064ae2017-07-12 11:27:32 -070049 *
50 * All statistics are in bytes unless stated otherwise.
Dennis Zhou30a5b532017-06-19 19:28:31 -040051 */
52static void chunk_map_stats(struct seq_file *m, struct pcpu_chunk *chunk,
Dennis Zhou (Facebook)cd6a8842017-07-15 22:23:06 -040053 int *buffer)
Dennis Zhou30a5b532017-06-19 19:28:31 -040054{
Dennis Zhou92c14ca2019-02-26 10:00:08 -080055 struct pcpu_block_md *chunk_md = &chunk->chunk_md;
Dennis Zhou (Facebook)40064ae2017-07-12 11:27:32 -070056 int i, last_alloc, as_len, start, end;
Dennis Zhou30a5b532017-06-19 19:28:31 -040057 int *alloc_sizes, *p;
58 /* statistics */
59 int sum_frag = 0, max_frag = 0;
60 int cur_min_alloc = 0, cur_med_alloc = 0, cur_max_alloc = 0;
61
62 alloc_sizes = buffer;
Dennis Zhou30a5b532017-06-19 19:28:31 -040063
Dennis Zhou (Facebook)40064ae2017-07-12 11:27:32 -070064 /*
65 * find_last_bit returns the start value if nothing found.
66 * Therefore, we must determine if it is a failure of find_last_bit
67 * and set the appropriate value.
68 */
69 last_alloc = find_last_bit(chunk->alloc_map,
70 pcpu_chunk_map_bits(chunk) -
71 chunk->end_offset / PCPU_MIN_ALLOC_SIZE - 1);
72 last_alloc = test_bit(last_alloc, chunk->alloc_map) ?
73 last_alloc + 1 : 0;
74
75 as_len = 0;
Dennis Zhou2e08d202017-09-27 16:34:59 -050076 start = chunk->start_offset / PCPU_MIN_ALLOC_SIZE;
Dennis Zhou (Facebook)40064ae2017-07-12 11:27:32 -070077
78 /*
79 * If a bit is set in the allocation map, the bound_map identifies
80 * where the allocation ends. If the allocation is not set, the
81 * bound_map does not identify free areas as it is only kept accurate
82 * on allocation, not free.
83 *
84 * Positive values are allocations and negative values are free
85 * fragments.
86 */
87 while (start < last_alloc) {
88 if (test_bit(start, chunk->alloc_map)) {
89 end = find_next_bit(chunk->bound_map, last_alloc,
90 start + 1);
91 alloc_sizes[as_len] = 1;
92 } else {
93 end = find_next_bit(chunk->alloc_map, last_alloc,
94 start + 1);
95 alloc_sizes[as_len] = -1;
Dennis Zhou30a5b532017-06-19 19:28:31 -040096 }
Dennis Zhou (Facebook)40064ae2017-07-12 11:27:32 -070097
98 alloc_sizes[as_len++] *= (end - start) * PCPU_MIN_ALLOC_SIZE;
99
100 start = end;
Dennis Zhou30a5b532017-06-19 19:28:31 -0400101 }
102
Dennis Zhou (Facebook)40064ae2017-07-12 11:27:32 -0700103 /*
104 * The negative values are free fragments and thus sorting gives the
105 * free fragments at the beginning in largest first order.
106 */
107 if (as_len > 0) {
108 sort(alloc_sizes, as_len, sizeof(int), cmpint, NULL);
Dennis Zhou30a5b532017-06-19 19:28:31 -0400109
Dennis Zhou (Facebook)40064ae2017-07-12 11:27:32 -0700110 /* iterate through the unallocated fragments */
Dennis Zhou30a5b532017-06-19 19:28:31 -0400111 for (i = 0, p = alloc_sizes; *p < 0 && i < as_len; i++, p++) {
112 sum_frag -= *p;
113 max_frag = max(max_frag, -1 * (*p));
114 }
115
116 cur_min_alloc = alloc_sizes[i];
117 cur_med_alloc = alloc_sizes[(i + as_len - 1) / 2];
118 cur_max_alloc = alloc_sizes[as_len - 1];
119 }
120
121 P("nr_alloc", chunk->nr_alloc);
122 P("max_alloc_size", chunk->max_alloc_size);
Dennis Zhou (Facebook)0cecf502017-07-24 19:02:08 -0400123 P("empty_pop_pages", chunk->nr_empty_pop_pages);
Dennis Zhou92c14ca2019-02-26 10:00:08 -0800124 P("first_bit", chunk_md->first_free);
Dennis Zhou (Facebook)40064ae2017-07-12 11:27:32 -0700125 P("free_bytes", chunk->free_bytes);
Dennis Zhou92c14ca2019-02-26 10:00:08 -0800126 P("contig_bytes", chunk_md->contig_hint * PCPU_MIN_ALLOC_SIZE);
Dennis Zhou30a5b532017-06-19 19:28:31 -0400127 P("sum_frag", sum_frag);
128 P("max_frag", max_frag);
129 P("cur_min_alloc", cur_min_alloc);
130 P("cur_med_alloc", cur_med_alloc);
131 P("cur_max_alloc", cur_max_alloc);
132 seq_putc(m, '\n');
133}
134
135static int percpu_stats_show(struct seq_file *m, void *v)
136{
137 struct pcpu_chunk *chunk;
Dennis Zhou (Facebook)40064ae2017-07-12 11:27:32 -0700138 int slot, max_nr_alloc;
Dennis Zhou (Facebook)cd6a8842017-07-15 22:23:06 -0400139 int *buffer;
Dennis Zhou30a5b532017-06-19 19:28:31 -0400140
141alloc_buffer:
142 spin_lock_irq(&pcpu_lock);
Dennis Zhou (Facebook)40064ae2017-07-12 11:27:32 -0700143 max_nr_alloc = find_max_nr_alloc();
Dennis Zhou30a5b532017-06-19 19:28:31 -0400144 spin_unlock_irq(&pcpu_lock);
145
Dennis Zhou (Facebook)40064ae2017-07-12 11:27:32 -0700146 /* there can be at most this many free and allocated fragments */
Kees Cook42bc47b2018-06-12 14:27:11 -0700147 buffer = vmalloc(array_size(sizeof(int), (2 * max_nr_alloc + 1)));
Dennis Zhou30a5b532017-06-19 19:28:31 -0400148 if (!buffer)
149 return -ENOMEM;
150
151 spin_lock_irq(&pcpu_lock);
152
153 /* if the buffer allocated earlier is too small */
Dennis Zhou (Facebook)40064ae2017-07-12 11:27:32 -0700154 if (max_nr_alloc < find_max_nr_alloc()) {
Dennis Zhou30a5b532017-06-19 19:28:31 -0400155 spin_unlock_irq(&pcpu_lock);
156 vfree(buffer);
157 goto alloc_buffer;
158 }
159
160#define PL(X) \
Dennis Zhou (Facebook)02459162017-07-15 22:23:07 -0400161 seq_printf(m, " %-20s: %12lld\n", #X, (long long int)pcpu_stats_ai.X)
Dennis Zhou30a5b532017-06-19 19:28:31 -0400162
163 seq_printf(m,
164 "Percpu Memory Statistics\n"
165 "Allocation Info:\n"
166 "----------------------------------------\n");
167 PL(unit_size);
168 PL(static_size);
169 PL(reserved_size);
170 PL(dyn_size);
171 PL(atom_size);
172 PL(alloc_size);
173 seq_putc(m, '\n');
174
175#undef PL
176
177#define PU(X) \
Dennis Zhou (Facebook)02459162017-07-15 22:23:07 -0400178 seq_printf(m, " %-20s: %12llu\n", #X, (unsigned long long)pcpu_stats.X)
Dennis Zhou30a5b532017-06-19 19:28:31 -0400179
180 seq_printf(m,
181 "Global Stats:\n"
182 "----------------------------------------\n");
183 PU(nr_alloc);
184 PU(nr_dealloc);
185 PU(nr_cur_alloc);
186 PU(nr_max_alloc);
187 PU(nr_chunks);
188 PU(nr_max_chunks);
189 PU(min_alloc_size);
190 PU(max_alloc_size);
Dennis Zhou (Facebook)6b9b6f32017-07-15 22:23:08 -0400191 P("empty_pop_pages", pcpu_nr_empty_pop_pages);
Dennis Zhou30a5b532017-06-19 19:28:31 -0400192 seq_putc(m, '\n');
193
194#undef PU
195
196 seq_printf(m,
197 "Per Chunk Stats:\n"
198 "----------------------------------------\n");
199
200 if (pcpu_reserved_chunk) {
201 seq_puts(m, "Chunk: <- Reserved Chunk\n");
202 chunk_map_stats(m, pcpu_reserved_chunk, buffer);
203 }
204
205 for (slot = 0; slot < pcpu_nr_slots; slot++) {
206 list_for_each_entry(chunk, &pcpu_slot[slot], list) {
207 if (chunk == pcpu_first_chunk) {
208 seq_puts(m, "Chunk: <- First Chunk\n");
209 chunk_map_stats(m, chunk, buffer);
210
211
212 } else {
213 seq_puts(m, "Chunk:\n");
214 chunk_map_stats(m, chunk, buffer);
215 }
216
217 }
218 }
219
220 spin_unlock_irq(&pcpu_lock);
221
222 vfree(buffer);
223
224 return 0;
225}
Andy Shevchenko5ad35092018-04-05 16:23:16 -0700226DEFINE_SHOW_ATTRIBUTE(percpu_stats);
Dennis Zhou30a5b532017-06-19 19:28:31 -0400227
228static int __init init_percpu_stats_debugfs(void)
229{
230 debugfs_create_file("percpu_stats", 0444, NULL, NULL,
231 &percpu_stats_fops);
232
233 return 0;
234}
235
236late_initcall(init_percpu_stats_debugfs);