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