perf kmem: Fix unused argument build warning
[deliverable/linux.git] / tools / perf / builtin-kmem.c
index 7551a5f834b878ba58e3ec33c7f06dd4e923c1aa..5f209514f657262ef6d0f29159733136d37f9c90 100644 (file)
@@ -526,7 +526,7 @@ static int __cmd_kmem(void)
 }
 
 static const char * const kmem_usage[] = {
-       "perf kmem [<options>] {record}",
+       "perf kmem [<options>] {record|stat}",
        NULL
 };
 
@@ -686,18 +686,17 @@ static int parse_sort_opt(const struct option *opt __used,
        return 0;
 }
 
-static int parse_stat_opt(const struct option *opt __used,
-                         const char *arg, int unset __used)
+static int parse_caller_opt(const struct option *opt __used,
+                         const char *arg __used, int unset __used)
 {
-       if (!arg)
-               return -1;
+       caller_flag = (alloc_flag + 1);
+       return 0;
+}
 
-       if (strcmp(arg, "alloc") == 0)
-               alloc_flag = (caller_flag + 1);
-       else if (strcmp(arg, "caller") == 0)
-               caller_flag = (alloc_flag + 1);
-       else
-               return -1;
+static int parse_alloc_opt(const struct option *opt __used,
+                         const char *arg __used, int unset __used)
+{
+       alloc_flag = (caller_flag + 1);
        return 0;
 }
 
@@ -722,14 +721,17 @@ static int parse_line_opt(const struct option *opt __used,
 static const struct option kmem_options[] = {
        OPT_STRING('i', "input", &input_name, "file",
                   "input file name"),
-       OPT_CALLBACK(0, "stat", NULL, "<alloc>|<caller>",
-                    "stat selector, Pass 'alloc' or 'caller'.",
-                    parse_stat_opt),
+       OPT_CALLBACK_NOOPT(0, "caller", NULL, NULL,
+                          "show per-callsite statistics",
+                          parse_caller_opt),
+       OPT_CALLBACK_NOOPT(0, "alloc", NULL, NULL,
+                          "show per-allocation statistics",
+                          parse_alloc_opt),
        OPT_CALLBACK('s', "sort", NULL, "key[,key2...]",
                     "sort by keys: ptr, call_site, bytes, hit, pingpong, frag",
                     parse_sort_opt),
        OPT_CALLBACK('l', "line", NULL, "num",
-                    "show n lins",
+                    "show n lines",
                     parse_line_opt),
        OPT_BOOLEAN(0, "raw-ip", &raw_ip, "show raw ip instead of symbol"),
        OPT_END()
@@ -773,18 +775,22 @@ int cmd_kmem(int argc, const char **argv, const char *prefix __used)
 
        argc = parse_options(argc, argv, kmem_options, kmem_usage, 0);
 
-       if (argc && !strncmp(argv[0], "rec", 3))
-               return __cmd_record(argc, argv);
-       else if (argc)
+       if (!argc)
                usage_with_options(kmem_usage, kmem_options);
 
-       if (list_empty(&caller_sort))
-               setup_sorting(&caller_sort, default_sort_order);
-       if (list_empty(&alloc_sort))
-               setup_sorting(&alloc_sort, default_sort_order);
+       if (!strncmp(argv[0], "rec", 3)) {
+               return __cmd_record(argc, argv);
+       } else if (!strcmp(argv[0], "stat")) {
+               setup_cpunode_map();
+
+               if (list_empty(&caller_sort))
+                       setup_sorting(&caller_sort, default_sort_order);
+               if (list_empty(&alloc_sort))
+                       setup_sorting(&alloc_sort, default_sort_order);
 
-       setup_cpunode_map();
+               return __cmd_kmem();
+       }
 
-       return __cmd_kmem();
+       return 0;
 }
 
This page took 0.026383 seconds and 5 git commands to generate.