Merge branch 'x86-debug-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[deliverable/linux.git] / tools / perf / builtin-kmem.c
CommitLineData
ba77c9e1
LZ
1#include "builtin.h"
2#include "perf.h"
3
4#include "util/util.h"
5#include "util/cache.h"
6#include "util/symbol.h"
7#include "util/thread.h"
8#include "util/header.h"
94c744b6 9#include "util/session.h"
45694aa7 10#include "util/tool.h"
ba77c9e1
LZ
11
12#include "util/parse-options.h"
13#include "util/trace-event.h"
14
15#include "util/debug.h"
ba77c9e1
LZ
16
17#include <linux/rbtree.h>
18
19struct alloc_stat;
20typedef int (*sort_fn_t)(struct alloc_stat *, struct alloc_stat *);
21
efad1415 22static const char *input_name;
ba77c9e1 23
ba77c9e1
LZ
24static int alloc_flag;
25static int caller_flag;
26
ba77c9e1
LZ
27static int alloc_lines = -1;
28static int caller_lines = -1;
29
7707b6b6
LZ
30static bool raw_ip;
31
29b3e152
LZ
32static char default_sort_order[] = "frag,hit,bytes";
33
7d0d3945
LZ
34static int *cpunode_map;
35static int max_cpu_num;
36
ba77c9e1 37struct alloc_stat {
079d3f65
LZ
38 u64 call_site;
39 u64 ptr;
ba77c9e1
LZ
40 u64 bytes_req;
41 u64 bytes_alloc;
42 u32 hit;
079d3f65
LZ
43 u32 pingpong;
44
45 short alloc_cpu;
ba77c9e1
LZ
46
47 struct rb_node node;
48};
49
50static struct rb_root root_alloc_stat;
51static struct rb_root root_alloc_sorted;
52static struct rb_root root_caller_stat;
53static struct rb_root root_caller_sorted;
54
55static unsigned long total_requested, total_allocated;
7d0d3945 56static unsigned long nr_allocs, nr_cross_allocs;
ba77c9e1 57
7d0d3945
LZ
58#define PATH_SYS_NODE "/sys/devices/system/node"
59
da378962
ACM
60struct perf_kmem {
61 struct perf_tool tool;
62 struct perf_session *session;
63};
64
7d0d3945
LZ
65static void init_cpunode_map(void)
66{
67 FILE *fp;
68 int i;
69
70 fp = fopen("/sys/devices/system/cpu/kernel_max", "r");
71 if (!fp) {
72 max_cpu_num = 4096;
73 return;
74 }
75
76 if (fscanf(fp, "%d", &max_cpu_num) < 1)
77 die("Failed to read 'kernel_max' from sysfs");
78 max_cpu_num++;
79
80 cpunode_map = calloc(max_cpu_num, sizeof(int));
81 if (!cpunode_map)
82 die("calloc");
83 for (i = 0; i < max_cpu_num; i++)
84 cpunode_map[i] = -1;
85 fclose(fp);
86}
87
88static void setup_cpunode_map(void)
89{
90 struct dirent *dent1, *dent2;
91 DIR *dir1, *dir2;
92 unsigned int cpu, mem;
93 char buf[PATH_MAX];
94
95 init_cpunode_map();
96
97 dir1 = opendir(PATH_SYS_NODE);
98 if (!dir1)
99 return;
100
659d8cfb
UD
101 while ((dent1 = readdir(dir1)) != NULL) {
102 if (dent1->d_type != DT_DIR ||
103 sscanf(dent1->d_name, "node%u", &mem) < 1)
7d0d3945
LZ
104 continue;
105
106 snprintf(buf, PATH_MAX, "%s/%s", PATH_SYS_NODE, dent1->d_name);
107 dir2 = opendir(buf);
108 if (!dir2)
109 continue;
659d8cfb
UD
110 while ((dent2 = readdir(dir2)) != NULL) {
111 if (dent2->d_type != DT_LNK ||
112 sscanf(dent2->d_name, "cpu%u", &cpu) < 1)
7d0d3945
LZ
113 continue;
114 cpunode_map[cpu] = mem;
115 }
8442da1d 116 closedir(dir2);
7d0d3945 117 }
8442da1d 118 closedir(dir1);
7d0d3945
LZ
119}
120
079d3f65
LZ
121static void insert_alloc_stat(unsigned long call_site, unsigned long ptr,
122 int bytes_req, int bytes_alloc, int cpu)
ba77c9e1
LZ
123{
124 struct rb_node **node = &root_alloc_stat.rb_node;
125 struct rb_node *parent = NULL;
126 struct alloc_stat *data = NULL;
127
ba77c9e1
LZ
128 while (*node) {
129 parent = *node;
130 data = rb_entry(*node, struct alloc_stat, node);
131
132 if (ptr > data->ptr)
133 node = &(*node)->rb_right;
134 else if (ptr < data->ptr)
135 node = &(*node)->rb_left;
136 else
137 break;
138 }
139
140 if (data && data->ptr == ptr) {
141 data->hit++;
142 data->bytes_req += bytes_req;
4efb5290 143 data->bytes_alloc += bytes_alloc;
ba77c9e1
LZ
144 } else {
145 data = malloc(sizeof(*data));
079d3f65
LZ
146 if (!data)
147 die("malloc");
ba77c9e1 148 data->ptr = ptr;
079d3f65 149 data->pingpong = 0;
ba77c9e1
LZ
150 data->hit = 1;
151 data->bytes_req = bytes_req;
152 data->bytes_alloc = bytes_alloc;
153
154 rb_link_node(&data->node, parent, node);
155 rb_insert_color(&data->node, &root_alloc_stat);
156 }
079d3f65
LZ
157 data->call_site = call_site;
158 data->alloc_cpu = cpu;
ba77c9e1
LZ
159}
160
161static void insert_caller_stat(unsigned long call_site,
162 int bytes_req, int bytes_alloc)
163{
164 struct rb_node **node = &root_caller_stat.rb_node;
165 struct rb_node *parent = NULL;
166 struct alloc_stat *data = NULL;
167
ba77c9e1
LZ
168 while (*node) {
169 parent = *node;
170 data = rb_entry(*node, struct alloc_stat, node);
171
172 if (call_site > data->call_site)
173 node = &(*node)->rb_right;
174 else if (call_site < data->call_site)
175 node = &(*node)->rb_left;
176 else
177 break;
178 }
179
180 if (data && data->call_site == call_site) {
181 data->hit++;
182 data->bytes_req += bytes_req;
4efb5290 183 data->bytes_alloc += bytes_alloc;
ba77c9e1
LZ
184 } else {
185 data = malloc(sizeof(*data));
079d3f65
LZ
186 if (!data)
187 die("malloc");
ba77c9e1 188 data->call_site = call_site;
079d3f65 189 data->pingpong = 0;
ba77c9e1
LZ
190 data->hit = 1;
191 data->bytes_req = bytes_req;
192 data->bytes_alloc = bytes_alloc;
193
194 rb_link_node(&data->node, parent, node);
195 rb_insert_color(&data->node, &root_caller_stat);
196 }
197}
198
f48f669d 199static void process_alloc_event(void *data,
aaf045f7 200 struct event_format *event,
7d0d3945 201 int cpu,
ba77c9e1
LZ
202 u64 timestamp __used,
203 struct thread *thread __used,
7d0d3945 204 int node)
ba77c9e1
LZ
205{
206 unsigned long call_site;
207 unsigned long ptr;
208 int bytes_req;
209 int bytes_alloc;
7d0d3945 210 int node1, node2;
ba77c9e1 211
f48f669d
XG
212 ptr = raw_field_value(event, "ptr", data);
213 call_site = raw_field_value(event, "call_site", data);
214 bytes_req = raw_field_value(event, "bytes_req", data);
215 bytes_alloc = raw_field_value(event, "bytes_alloc", data);
ba77c9e1 216
079d3f65 217 insert_alloc_stat(call_site, ptr, bytes_req, bytes_alloc, cpu);
ba77c9e1
LZ
218 insert_caller_stat(call_site, bytes_req, bytes_alloc);
219
220 total_requested += bytes_req;
221 total_allocated += bytes_alloc;
7d0d3945
LZ
222
223 if (node) {
224 node1 = cpunode_map[cpu];
f48f669d 225 node2 = raw_field_value(event, "node", data);
7d0d3945
LZ
226 if (node1 != node2)
227 nr_cross_allocs++;
228 }
229 nr_allocs++;
ba77c9e1
LZ
230}
231
079d3f65
LZ
232static int ptr_cmp(struct alloc_stat *, struct alloc_stat *);
233static int callsite_cmp(struct alloc_stat *, struct alloc_stat *);
234
235static struct alloc_stat *search_alloc_stat(unsigned long ptr,
236 unsigned long call_site,
237 struct rb_root *root,
238 sort_fn_t sort_fn)
239{
240 struct rb_node *node = root->rb_node;
241 struct alloc_stat key = { .ptr = ptr, .call_site = call_site };
242
243 while (node) {
244 struct alloc_stat *data;
245 int cmp;
246
247 data = rb_entry(node, struct alloc_stat, node);
248
249 cmp = sort_fn(&key, data);
250 if (cmp < 0)
251 node = node->rb_left;
252 else if (cmp > 0)
253 node = node->rb_right;
254 else
255 return data;
256 }
257 return NULL;
258}
259
f48f669d 260static void process_free_event(void *data,
aaf045f7 261 struct event_format *event,
079d3f65 262 int cpu,
ba77c9e1
LZ
263 u64 timestamp __used,
264 struct thread *thread __used)
265{
079d3f65
LZ
266 unsigned long ptr;
267 struct alloc_stat *s_alloc, *s_caller;
268
f48f669d 269 ptr = raw_field_value(event, "ptr", data);
079d3f65
LZ
270
271 s_alloc = search_alloc_stat(ptr, 0, &root_alloc_stat, ptr_cmp);
272 if (!s_alloc)
273 return;
274
275 if (cpu != s_alloc->alloc_cpu) {
276 s_alloc->pingpong++;
277
278 s_caller = search_alloc_stat(0, s_alloc->call_site,
279 &root_caller_stat, callsite_cmp);
280 assert(s_caller);
281 s_caller->pingpong++;
282 }
283 s_alloc->alloc_cpu = -1;
ba77c9e1
LZ
284}
285
da378962
ACM
286static void process_raw_event(struct perf_tool *tool,
287 union perf_event *raw_event __used, void *data,
8115d60c 288 int cpu, u64 timestamp, struct thread *thread)
ba77c9e1 289{
da378962 290 struct perf_kmem *kmem = container_of(tool, struct perf_kmem, tool);
aaf045f7 291 struct event_format *event;
ba77c9e1
LZ
292 int type;
293
da378962
ACM
294 type = trace_parse_common_type(kmem->session->pevent, data);
295 event = pevent_find_event(kmem->session->pevent, type);
ba77c9e1
LZ
296
297 if (!strcmp(event->name, "kmalloc") ||
298 !strcmp(event->name, "kmem_cache_alloc")) {
f48f669d 299 process_alloc_event(data, event, cpu, timestamp, thread, 0);
ba77c9e1
LZ
300 return;
301 }
302
303 if (!strcmp(event->name, "kmalloc_node") ||
304 !strcmp(event->name, "kmem_cache_alloc_node")) {
f48f669d 305 process_alloc_event(data, event, cpu, timestamp, thread, 1);
ba77c9e1
LZ
306 return;
307 }
308
309 if (!strcmp(event->name, "kfree") ||
310 !strcmp(event->name, "kmem_cache_free")) {
f48f669d 311 process_free_event(data, event, cpu, timestamp, thread);
ba77c9e1
LZ
312 return;
313 }
314}
315
da378962 316static int process_sample_event(struct perf_tool *tool,
d20deb64 317 union perf_event *event,
8115d60c 318 struct perf_sample *sample,
9e69c210 319 struct perf_evsel *evsel __used,
743eb868 320 struct machine *machine)
ba77c9e1 321{
743eb868 322 struct thread *thread = machine__findnew_thread(machine, event->ip.pid);
ba77c9e1 323
ba77c9e1
LZ
324 if (thread == NULL) {
325 pr_debug("problem processing %d event, skipping it.\n",
326 event->header.type);
327 return -1;
328 }
329
330 dump_printf(" ... thread: %s:%d\n", thread->comm, thread->pid);
331
da378962 332 process_raw_event(tool, event, sample->raw_data, sample->cpu,
640c03ce 333 sample->time, thread);
ba77c9e1
LZ
334
335 return 0;
336}
337
da378962
ACM
338static struct perf_kmem perf_kmem = {
339 .tool = {
340 .sample = process_sample_event,
341 .comm = perf_event__process_comm,
342 .ordered_samples = true,
343 },
ba77c9e1
LZ
344};
345
ba77c9e1
LZ
346static double fragmentation(unsigned long n_req, unsigned long n_alloc)
347{
348 if (n_alloc == 0)
349 return 0.0;
350 else
351 return 100.0 - (100.0 * n_req / n_alloc);
352}
353
4aa65636
ACM
354static void __print_result(struct rb_root *root, struct perf_session *session,
355 int n_lines, int is_caller)
ba77c9e1
LZ
356{
357 struct rb_node *next;
23346f21 358 struct machine *machine;
ba77c9e1 359
079d3f65
LZ
360 printf("%.102s\n", graph_dotted_line);
361 printf(" %-34s |", is_caller ? "Callsite": "Alloc Ptr");
47103277 362 printf(" Total_alloc/Per | Total_req/Per | Hit | Ping-pong | Frag\n");
079d3f65 363 printf("%.102s\n", graph_dotted_line);
ba77c9e1
LZ
364
365 next = rb_first(root);
366
23346f21
ACM
367 machine = perf_session__find_host_machine(session);
368 if (!machine) {
a1645ce1
ZY
369 pr_err("__print_result: couldn't find kernel information\n");
370 return;
371 }
ba77c9e1 372 while (next && n_lines--) {
1b145ae5
ACM
373 struct alloc_stat *data = rb_entry(next, struct alloc_stat,
374 node);
375 struct symbol *sym = NULL;
71cf8b8f 376 struct map *map;
079d3f65 377 char buf[BUFSIZ];
1b145ae5
ACM
378 u64 addr;
379
380 if (is_caller) {
381 addr = data->call_site;
7707b6b6 382 if (!raw_ip)
5c0541d5 383 sym = machine__find_kernel_function(machine, addr, &map, NULL);
1b145ae5
ACM
384 } else
385 addr = data->ptr;
386
387 if (sym != NULL)
9486aa38 388 snprintf(buf, sizeof(buf), "%s+%" PRIx64 "", sym->name,
71cf8b8f 389 addr - map->unmap_ip(map, sym->start));
1b145ae5 390 else
9486aa38 391 snprintf(buf, sizeof(buf), "%#" PRIx64 "", addr);
079d3f65 392 printf(" %-34s |", buf);
ba77c9e1 393
47103277 394 printf(" %9llu/%-5lu | %9llu/%-5lu | %8lu | %8lu | %6.3f%%\n",
079d3f65 395 (unsigned long long)data->bytes_alloc,
ba77c9e1
LZ
396 (unsigned long)data->bytes_alloc / data->hit,
397 (unsigned long long)data->bytes_req,
398 (unsigned long)data->bytes_req / data->hit,
399 (unsigned long)data->hit,
079d3f65 400 (unsigned long)data->pingpong,
ba77c9e1
LZ
401 fragmentation(data->bytes_req, data->bytes_alloc));
402
403 next = rb_next(next);
404 }
405
406 if (n_lines == -1)
079d3f65 407 printf(" ... | ... | ... | ... | ... | ... \n");
ba77c9e1 408
079d3f65 409 printf("%.102s\n", graph_dotted_line);
ba77c9e1
LZ
410}
411
412static void print_summary(void)
413{
414 printf("\nSUMMARY\n=======\n");
415 printf("Total bytes requested: %lu\n", total_requested);
416 printf("Total bytes allocated: %lu\n", total_allocated);
417 printf("Total bytes wasted on internal fragmentation: %lu\n",
418 total_allocated - total_requested);
419 printf("Internal fragmentation: %f%%\n",
420 fragmentation(total_requested, total_allocated));
7d0d3945 421 printf("Cross CPU allocations: %lu/%lu\n", nr_cross_allocs, nr_allocs);
ba77c9e1
LZ
422}
423
4aa65636 424static void print_result(struct perf_session *session)
ba77c9e1
LZ
425{
426 if (caller_flag)
4aa65636 427 __print_result(&root_caller_sorted, session, caller_lines, 1);
ba77c9e1 428 if (alloc_flag)
4aa65636 429 __print_result(&root_alloc_sorted, session, alloc_lines, 0);
ba77c9e1
LZ
430 print_summary();
431}
432
29b3e152
LZ
433struct sort_dimension {
434 const char name[20];
435 sort_fn_t cmp;
436 struct list_head list;
437};
438
439static LIST_HEAD(caller_sort);
440static LIST_HEAD(alloc_sort);
441
ba77c9e1 442static void sort_insert(struct rb_root *root, struct alloc_stat *data,
29b3e152 443 struct list_head *sort_list)
ba77c9e1
LZ
444{
445 struct rb_node **new = &(root->rb_node);
446 struct rb_node *parent = NULL;
29b3e152 447 struct sort_dimension *sort;
ba77c9e1
LZ
448
449 while (*new) {
450 struct alloc_stat *this;
29b3e152 451 int cmp = 0;
ba77c9e1
LZ
452
453 this = rb_entry(*new, struct alloc_stat, node);
454 parent = *new;
455
29b3e152
LZ
456 list_for_each_entry(sort, sort_list, list) {
457 cmp = sort->cmp(data, this);
458 if (cmp)
459 break;
460 }
ba77c9e1
LZ
461
462 if (cmp > 0)
463 new = &((*new)->rb_left);
464 else
465 new = &((*new)->rb_right);
466 }
467
468 rb_link_node(&data->node, parent, new);
469 rb_insert_color(&data->node, root);
470}
471
472static void __sort_result(struct rb_root *root, struct rb_root *root_sorted,
29b3e152 473 struct list_head *sort_list)
ba77c9e1
LZ
474{
475 struct rb_node *node;
476 struct alloc_stat *data;
477
478 for (;;) {
479 node = rb_first(root);
480 if (!node)
481 break;
482
483 rb_erase(node, root);
484 data = rb_entry(node, struct alloc_stat, node);
29b3e152 485 sort_insert(root_sorted, data, sort_list);
ba77c9e1
LZ
486 }
487}
488
489static void sort_result(void)
490{
29b3e152
LZ
491 __sort_result(&root_alloc_stat, &root_alloc_sorted, &alloc_sort);
492 __sort_result(&root_caller_stat, &root_caller_sorted, &caller_sort);
ba77c9e1
LZ
493}
494
495static int __cmd_kmem(void)
496{
d549c769 497 int err = -EINVAL;
da378962
ACM
498 struct perf_session *session;
499
500 session = perf_session__new(input_name, O_RDONLY, 0, false,
501 &perf_kmem.tool);
4aa65636
ACM
502 if (session == NULL)
503 return -ENOMEM;
504
da378962
ACM
505 perf_kmem.session = session;
506
e727ca73
ACM
507 if (perf_session__create_kernel_maps(session) < 0)
508 goto out_delete;
509
d549c769
ACM
510 if (!perf_session__has_traces(session, "kmem record"))
511 goto out_delete;
512
ba77c9e1 513 setup_pager();
da378962 514 err = perf_session__process_events(session, &perf_kmem.tool);
4aa65636
ACM
515 if (err != 0)
516 goto out_delete;
ba77c9e1 517 sort_result();
4aa65636
ACM
518 print_result(session);
519out_delete:
520 perf_session__delete(session);
521 return err;
ba77c9e1
LZ
522}
523
524static const char * const kmem_usage[] = {
90b86a9f 525 "perf kmem [<options>] {record|stat}",
ba77c9e1
LZ
526 NULL
527};
528
ba77c9e1
LZ
529static int ptr_cmp(struct alloc_stat *l, struct alloc_stat *r)
530{
531 if (l->ptr < r->ptr)
532 return -1;
533 else if (l->ptr > r->ptr)
534 return 1;
535 return 0;
536}
537
29b3e152
LZ
538static struct sort_dimension ptr_sort_dimension = {
539 .name = "ptr",
540 .cmp = ptr_cmp,
541};
542
ba77c9e1
LZ
543static int callsite_cmp(struct alloc_stat *l, struct alloc_stat *r)
544{
545 if (l->call_site < r->call_site)
546 return -1;
547 else if (l->call_site > r->call_site)
548 return 1;
549 return 0;
550}
551
29b3e152
LZ
552static struct sort_dimension callsite_sort_dimension = {
553 .name = "callsite",
554 .cmp = callsite_cmp,
555};
556
f3ced7cd
PE
557static int hit_cmp(struct alloc_stat *l, struct alloc_stat *r)
558{
559 if (l->hit < r->hit)
560 return -1;
561 else if (l->hit > r->hit)
562 return 1;
563 return 0;
564}
565
29b3e152
LZ
566static struct sort_dimension hit_sort_dimension = {
567 .name = "hit",
568 .cmp = hit_cmp,
569};
570
ba77c9e1
LZ
571static int bytes_cmp(struct alloc_stat *l, struct alloc_stat *r)
572{
573 if (l->bytes_alloc < r->bytes_alloc)
574 return -1;
575 else if (l->bytes_alloc > r->bytes_alloc)
576 return 1;
577 return 0;
578}
579
29b3e152
LZ
580static struct sort_dimension bytes_sort_dimension = {
581 .name = "bytes",
582 .cmp = bytes_cmp,
583};
584
f3ced7cd
PE
585static int frag_cmp(struct alloc_stat *l, struct alloc_stat *r)
586{
587 double x, y;
588
589 x = fragmentation(l->bytes_req, l->bytes_alloc);
590 y = fragmentation(r->bytes_req, r->bytes_alloc);
591
592 if (x < y)
593 return -1;
594 else if (x > y)
595 return 1;
596 return 0;
597}
598
29b3e152
LZ
599static struct sort_dimension frag_sort_dimension = {
600 .name = "frag",
601 .cmp = frag_cmp,
602};
603
079d3f65
LZ
604static int pingpong_cmp(struct alloc_stat *l, struct alloc_stat *r)
605{
606 if (l->pingpong < r->pingpong)
607 return -1;
608 else if (l->pingpong > r->pingpong)
609 return 1;
610 return 0;
611}
612
613static struct sort_dimension pingpong_sort_dimension = {
614 .name = "pingpong",
615 .cmp = pingpong_cmp,
616};
617
29b3e152
LZ
618static struct sort_dimension *avail_sorts[] = {
619 &ptr_sort_dimension,
620 &callsite_sort_dimension,
621 &hit_sort_dimension,
622 &bytes_sort_dimension,
623 &frag_sort_dimension,
079d3f65 624 &pingpong_sort_dimension,
29b3e152
LZ
625};
626
627#define NUM_AVAIL_SORTS \
628 (int)(sizeof(avail_sorts) / sizeof(struct sort_dimension *))
629
630static int sort_dimension__add(const char *tok, struct list_head *list)
631{
632 struct sort_dimension *sort;
633 int i;
634
635 for (i = 0; i < NUM_AVAIL_SORTS; i++) {
636 if (!strcmp(avail_sorts[i]->name, tok)) {
637 sort = malloc(sizeof(*sort));
638 if (!sort)
639 die("malloc");
640 memcpy(sort, avail_sorts[i], sizeof(*sort));
641 list_add_tail(&sort->list, list);
642 return 0;
643 }
644 }
645
646 return -1;
647}
648
649static int setup_sorting(struct list_head *sort_list, const char *arg)
650{
651 char *tok;
652 char *str = strdup(arg);
653
654 if (!str)
655 die("strdup");
656
657 while (true) {
658 tok = strsep(&str, ",");
659 if (!tok)
660 break;
661 if (sort_dimension__add(tok, sort_list) < 0) {
662 error("Unknown --sort key: '%s'", tok);
1b22859d 663 free(str);
29b3e152
LZ
664 return -1;
665 }
666 }
667
668 free(str);
669 return 0;
670}
671
ba77c9e1
LZ
672static int parse_sort_opt(const struct option *opt __used,
673 const char *arg, int unset __used)
674{
ba77c9e1
LZ
675 if (!arg)
676 return -1;
677
ba77c9e1 678 if (caller_flag > alloc_flag)
29b3e152 679 return setup_sorting(&caller_sort, arg);
ba77c9e1 680 else
29b3e152 681 return setup_sorting(&alloc_sort, arg);
ba77c9e1
LZ
682
683 return 0;
684}
685
90b86a9f 686static int parse_caller_opt(const struct option *opt __used,
79312416 687 const char *arg __used, int unset __used)
ba77c9e1 688{
90b86a9f
LZ
689 caller_flag = (alloc_flag + 1);
690 return 0;
691}
ba77c9e1 692
90b86a9f 693static int parse_alloc_opt(const struct option *opt __used,
79312416 694 const char *arg __used, int unset __used)
90b86a9f
LZ
695{
696 alloc_flag = (caller_flag + 1);
ba77c9e1
LZ
697 return 0;
698}
699
700static int parse_line_opt(const struct option *opt __used,
701 const char *arg, int unset __used)
702{
703 int lines;
704
705 if (!arg)
706 return -1;
707
708 lines = strtoul(arg, NULL, 10);
709
710 if (caller_flag > alloc_flag)
711 caller_lines = lines;
712 else
713 alloc_lines = lines;
714
715 return 0;
716}
717
718static const struct option kmem_options[] = {
719 OPT_STRING('i', "input", &input_name, "file",
720 "input file name"),
90b86a9f
LZ
721 OPT_CALLBACK_NOOPT(0, "caller", NULL, NULL,
722 "show per-callsite statistics",
723 parse_caller_opt),
724 OPT_CALLBACK_NOOPT(0, "alloc", NULL, NULL,
725 "show per-allocation statistics",
726 parse_alloc_opt),
29b3e152 727 OPT_CALLBACK('s', "sort", NULL, "key[,key2...]",
079d3f65 728 "sort by keys: ptr, call_site, bytes, hit, pingpong, frag",
ba77c9e1
LZ
729 parse_sort_opt),
730 OPT_CALLBACK('l', "line", NULL, "num",
90b86a9f 731 "show n lines",
ba77c9e1 732 parse_line_opt),
7707b6b6 733 OPT_BOOLEAN(0, "raw-ip", &raw_ip, "show raw ip instead of symbol"),
ba77c9e1
LZ
734 OPT_END()
735};
736
737static const char *record_args[] = {
738 "record",
739 "-a",
740 "-R",
ba77c9e1
LZ
741 "-f",
742 "-c", "1",
743 "-e", "kmem:kmalloc",
744 "-e", "kmem:kmalloc_node",
745 "-e", "kmem:kfree",
746 "-e", "kmem:kmem_cache_alloc",
747 "-e", "kmem:kmem_cache_alloc_node",
748 "-e", "kmem:kmem_cache_free",
749};
750
751static int __cmd_record(int argc, const char **argv)
752{
753 unsigned int rec_argc, i, j;
754 const char **rec_argv;
755
756 rec_argc = ARRAY_SIZE(record_args) + argc - 1;
757 rec_argv = calloc(rec_argc + 1, sizeof(char *));
758
ce47dc56
CS
759 if (rec_argv == NULL)
760 return -ENOMEM;
761
ba77c9e1
LZ
762 for (i = 0; i < ARRAY_SIZE(record_args); i++)
763 rec_argv[i] = strdup(record_args[i]);
764
765 for (j = 1; j < (unsigned int)argc; j++, i++)
766 rec_argv[i] = argv[j];
767
768 return cmd_record(i, rec_argv, NULL);
769}
770
771int cmd_kmem(int argc, const char **argv, const char *prefix __used)
772{
ba77c9e1
LZ
773 argc = parse_options(argc, argv, kmem_options, kmem_usage, 0);
774
90b86a9f 775 if (!argc)
ba77c9e1
LZ
776 usage_with_options(kmem_usage, kmem_options);
777
655000e7
ACM
778 symbol__init();
779
90b86a9f
LZ
780 if (!strncmp(argv[0], "rec", 3)) {
781 return __cmd_record(argc, argv);
782 } else if (!strcmp(argv[0], "stat")) {
783 setup_cpunode_map();
784
785 if (list_empty(&caller_sort))
786 setup_sorting(&caller_sort, default_sort_order);
787 if (list_empty(&alloc_sort))
788 setup_sorting(&alloc_sort, default_sort_order);
ba77c9e1 789
90b86a9f 790 return __cmd_kmem();
b00eca8c
PE
791 } else
792 usage_with_options(kmem_usage, kmem_options);
7d0d3945 793
90b86a9f 794 return 0;
ba77c9e1
LZ
795}
796
This page took 0.155219 seconds and 5 git commands to generate.