diff options
Diffstat (limited to 'tools/perf/util')
| -rw-r--r-- | tools/perf/util/hist.c | 2 | ||||
| -rw-r--r-- | tools/perf/util/parse-options.c | 10 | ||||
| -rw-r--r-- | tools/perf/util/parse-options.h | 16 | ||||
| -rw-r--r-- | tools/perf/util/sort.c | 8 | ||||
| -rw-r--r-- | tools/perf/util/sort.h | 8 | ||||
| -rw-r--r-- | tools/perf/util/symbol.h | 2 |
6 files changed, 23 insertions, 23 deletions
diff --git a/tools/perf/util/hist.c b/tools/perf/util/hist.c index f75c5f62401c..9a71c94f057a 100644 --- a/tools/perf/util/hist.c +++ b/tools/perf/util/hist.c | |||
| @@ -662,7 +662,7 @@ size_t hists__fprintf(struct hists *self, struct hists *pair, | |||
| 662 | long displacement = 0; | 662 | long displacement = 0; |
| 663 | unsigned int width; | 663 | unsigned int width; |
| 664 | const char *sep = symbol_conf.field_sep; | 664 | const char *sep = symbol_conf.field_sep; |
| 665 | char *col_width = symbol_conf.col_width_list_str; | 665 | const char *col_width = symbol_conf.col_width_list_str; |
| 666 | 666 | ||
| 667 | init_rem_hits(); | 667 | init_rem_hits(); |
| 668 | 668 | ||
diff --git a/tools/perf/util/parse-options.c b/tools/perf/util/parse-options.c index 36d955e49422..99d02aa57dbf 100644 --- a/tools/perf/util/parse-options.c +++ b/tools/perf/util/parse-options.c | |||
| @@ -51,7 +51,7 @@ static int get_value(struct parse_opt_ctx_t *p, | |||
| 51 | case OPTION_BOOLEAN: | 51 | case OPTION_BOOLEAN: |
| 52 | case OPTION_INCR: | 52 | case OPTION_INCR: |
| 53 | case OPTION_BIT: | 53 | case OPTION_BIT: |
| 54 | case OPTION_SET_INT: | 54 | case OPTION_SET_UINT: |
| 55 | case OPTION_SET_PTR: | 55 | case OPTION_SET_PTR: |
| 56 | return opterror(opt, "takes no value", flags); | 56 | return opterror(opt, "takes no value", flags); |
| 57 | case OPTION_END: | 57 | case OPTION_END: |
| @@ -83,8 +83,8 @@ static int get_value(struct parse_opt_ctx_t *p, | |||
| 83 | *(int *)opt->value = unset ? 0 : *(int *)opt->value + 1; | 83 | *(int *)opt->value = unset ? 0 : *(int *)opt->value + 1; |
| 84 | return 0; | 84 | return 0; |
| 85 | 85 | ||
| 86 | case OPTION_SET_INT: | 86 | case OPTION_SET_UINT: |
| 87 | *(int *)opt->value = unset ? 0 : opt->defval; | 87 | *(unsigned int *)opt->value = unset ? 0 : opt->defval; |
| 88 | return 0; | 88 | return 0; |
| 89 | 89 | ||
| 90 | case OPTION_SET_PTR: | 90 | case OPTION_SET_PTR: |
| @@ -515,13 +515,13 @@ int usage_with_options_internal(const char * const *usagestr, | |||
| 515 | pos += fprintf(stderr, " ..."); | 515 | pos += fprintf(stderr, " ..."); |
| 516 | } | 516 | } |
| 517 | break; | 517 | break; |
| 518 | default: /* OPTION_{BIT,BOOLEAN,SET_INT,SET_PTR} */ | 518 | default: /* OPTION_{BIT,BOOLEAN,SET_UINT,SET_PTR} */ |
| 519 | case OPTION_END: | 519 | case OPTION_END: |
| 520 | case OPTION_GROUP: | 520 | case OPTION_GROUP: |
| 521 | case OPTION_BIT: | 521 | case OPTION_BIT: |
| 522 | case OPTION_BOOLEAN: | 522 | case OPTION_BOOLEAN: |
| 523 | case OPTION_INCR: | 523 | case OPTION_INCR: |
| 524 | case OPTION_SET_INT: | 524 | case OPTION_SET_UINT: |
| 525 | case OPTION_SET_PTR: | 525 | case OPTION_SET_PTR: |
| 526 | break; | 526 | break; |
| 527 | } | 527 | } |
diff --git a/tools/perf/util/parse-options.h b/tools/perf/util/parse-options.h index 5838e2d8bbc1..c7d72dce54b2 100644 --- a/tools/perf/util/parse-options.h +++ b/tools/perf/util/parse-options.h | |||
| @@ -13,7 +13,7 @@ enum parse_opt_type { | |||
| 13 | OPTION_BIT, | 13 | OPTION_BIT, |
| 14 | OPTION_BOOLEAN, | 14 | OPTION_BOOLEAN, |
| 15 | OPTION_INCR, | 15 | OPTION_INCR, |
| 16 | OPTION_SET_INT, | 16 | OPTION_SET_UINT, |
| 17 | OPTION_SET_PTR, | 17 | OPTION_SET_PTR, |
| 18 | /* options with arguments (usually) */ | 18 | /* options with arguments (usually) */ |
| 19 | OPTION_STRING, | 19 | OPTION_STRING, |
| @@ -79,7 +79,7 @@ typedef int parse_opt_cb(const struct option *, const char *arg, int unset); | |||
| 79 | * | 79 | * |
| 80 | * `defval`:: | 80 | * `defval`:: |
| 81 | * default value to fill (*->value) with for PARSE_OPT_OPTARG. | 81 | * default value to fill (*->value) with for PARSE_OPT_OPTARG. |
| 82 | * OPTION_{BIT,SET_INT,SET_PTR} store the {mask,integer,pointer} to put in | 82 | * OPTION_{BIT,SET_UINT,SET_PTR} store the {mask,integer,pointer} to put in |
| 83 | * the value when met. | 83 | * the value when met. |
| 84 | * CALLBACKS can use it like they want. | 84 | * CALLBACKS can use it like they want. |
| 85 | */ | 85 | */ |
| @@ -101,16 +101,16 @@ struct option { | |||
| 101 | #define OPT_END() { .type = OPTION_END } | 101 | #define OPT_END() { .type = OPTION_END } |
| 102 | #define OPT_ARGUMENT(l, h) { .type = OPTION_ARGUMENT, .long_name = (l), .help = (h) } | 102 | #define OPT_ARGUMENT(l, h) { .type = OPTION_ARGUMENT, .long_name = (l), .help = (h) } |
| 103 | #define OPT_GROUP(h) { .type = OPTION_GROUP, .help = (h) } | 103 | #define OPT_GROUP(h) { .type = OPTION_GROUP, .help = (h) } |
| 104 | #define OPT_BIT(s, l, v, h, b) { .type = OPTION_BIT, .short_name = (s), .long_name = (l), .value = (v), .help = (h), .defval = (b) } | 104 | #define OPT_BIT(s, l, v, h, b) { .type = OPTION_BIT, .short_name = (s), .long_name = (l), .value = check_vtype(v, int *), .help = (h), .defval = (b) } |
| 105 | #define OPT_BOOLEAN(s, l, v, h) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), .value = check_vtype(v, bool *), .help = (h) } | 105 | #define OPT_BOOLEAN(s, l, v, h) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), .value = check_vtype(v, bool *), .help = (h) } |
| 106 | #define OPT_INCR(s, l, v, h) { .type = OPTION_INCR, .short_name = (s), .long_name = (l), .value = (v), .help = (h) } | 106 | #define OPT_INCR(s, l, v, h) { .type = OPTION_INCR, .short_name = (s), .long_name = (l), .value = check_vtype(v, int *), .help = (h) } |
| 107 | #define OPT_SET_INT(s, l, v, h, i) { .type = OPTION_SET_INT, .short_name = (s), .long_name = (l), .value = (v), .help = (h), .defval = (i) } | 107 | #define OPT_SET_UINT(s, l, v, h, i) { .type = OPTION_SET_UINT, .short_name = (s), .long_name = (l), .value = check_vtype(v, unsigned int *), .help = (h), .defval = (i) } |
| 108 | #define OPT_SET_PTR(s, l, v, h, p) { .type = OPTION_SET_PTR, .short_name = (s), .long_name = (l), .value = (v), .help = (h), .defval = (p) } | 108 | #define OPT_SET_PTR(s, l, v, h, p) { .type = OPTION_SET_PTR, .short_name = (s), .long_name = (l), .value = (v), .help = (h), .defval = (p) } |
| 109 | #define OPT_INTEGER(s, l, v, h) { .type = OPTION_INTEGER, .short_name = (s), .long_name = (l), .value = check_vtype(v, int *), .help = (h) } | 109 | #define OPT_INTEGER(s, l, v, h) { .type = OPTION_INTEGER, .short_name = (s), .long_name = (l), .value = check_vtype(v, int *), .help = (h) } |
| 110 | #define OPT_UINTEGER(s, l, v, h) { .type = OPTION_UINTEGER, .short_name = (s), .long_name = (l), .value = check_vtype(v, unsigned int *), .help = (h) } | 110 | #define OPT_UINTEGER(s, l, v, h) { .type = OPTION_UINTEGER, .short_name = (s), .long_name = (l), .value = check_vtype(v, unsigned int *), .help = (h) } |
| 111 | #define OPT_LONG(s, l, v, h) { .type = OPTION_LONG, .short_name = (s), .long_name = (l), .value = (v), .help = (h) } | 111 | #define OPT_LONG(s, l, v, h) { .type = OPTION_LONG, .short_name = (s), .long_name = (l), .value = check_vtype(v, long *), .help = (h) } |
| 112 | #define OPT_U64(s, l, v, h) { .type = OPTION_U64, .short_name = (s), .long_name = (l), .value = (v), .help = (h) } | 112 | #define OPT_U64(s, l, v, h) { .type = OPTION_U64, .short_name = (s), .long_name = (l), .value = check_vtype(v, u64 *), .help = (h) } |
| 113 | #define OPT_STRING(s, l, v, a, h) { .type = OPTION_STRING, .short_name = (s), .long_name = (l), .value = (v), (a), .help = (h) } | 113 | #define OPT_STRING(s, l, v, a, h) { .type = OPTION_STRING, .short_name = (s), .long_name = (l), .value = check_vtype(v, const char **), (a), .help = (h) } |
| 114 | #define OPT_DATE(s, l, v, h) \ | 114 | #define OPT_DATE(s, l, v, h) \ |
| 115 | { .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l), .value = (v), .argh = "time", .help = (h), .callback = parse_opt_approxidate_cb } | 115 | { .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l), .value = (v), .argh = "time", .help = (h), .callback = parse_opt_approxidate_cb } |
| 116 | #define OPT_CALLBACK(s, l, v, a, h, f) \ | 116 | #define OPT_CALLBACK(s, l, v, a, h, f) \ |
diff --git a/tools/perf/util/sort.c b/tools/perf/util/sort.c index da30b305fba0..2316cb5a4116 100644 --- a/tools/perf/util/sort.c +++ b/tools/perf/util/sort.c | |||
| @@ -1,10 +1,10 @@ | |||
| 1 | #include "sort.h" | 1 | #include "sort.h" |
| 2 | 2 | ||
| 3 | regex_t parent_regex; | 3 | regex_t parent_regex; |
| 4 | char default_parent_pattern[] = "^sys_|^do_page_fault"; | 4 | const char default_parent_pattern[] = "^sys_|^do_page_fault"; |
| 5 | char *parent_pattern = default_parent_pattern; | 5 | const char *parent_pattern = default_parent_pattern; |
| 6 | char default_sort_order[] = "comm,dso,symbol"; | 6 | const char default_sort_order[] = "comm,dso,symbol"; |
| 7 | char *sort_order = default_sort_order; | 7 | const char *sort_order = default_sort_order; |
| 8 | int sort__need_collapse = 0; | 8 | int sort__need_collapse = 0; |
| 9 | int sort__has_parent = 0; | 9 | int sort__has_parent = 0; |
| 10 | 10 | ||
diff --git a/tools/perf/util/sort.h b/tools/perf/util/sort.h index eab2e0b3b74e..0d61c4082f43 100644 --- a/tools/perf/util/sort.h +++ b/tools/perf/util/sort.h | |||
| @@ -25,10 +25,10 @@ | |||
| 25 | #include "sort.h" | 25 | #include "sort.h" |
| 26 | 26 | ||
| 27 | extern regex_t parent_regex; | 27 | extern regex_t parent_regex; |
| 28 | extern char *sort_order; | 28 | extern const char *sort_order; |
| 29 | extern char default_parent_pattern[]; | 29 | extern const char default_parent_pattern[]; |
| 30 | extern char *parent_pattern; | 30 | extern const char *parent_pattern; |
| 31 | extern char default_sort_order[]; | 31 | extern const char default_sort_order[]; |
| 32 | extern int sort__need_collapse; | 32 | extern int sort__need_collapse; |
| 33 | extern int sort__has_parent; | 33 | extern int sort__has_parent; |
| 34 | extern char *field_sep; | 34 | extern char *field_sep; |
diff --git a/tools/perf/util/symbol.h b/tools/perf/util/symbol.h index 6389d1acaf81..032469e41876 100644 --- a/tools/perf/util/symbol.h +++ b/tools/perf/util/symbol.h | |||
| @@ -78,7 +78,7 @@ struct symbol_conf { | |||
| 78 | *default_guest_kallsyms, | 78 | *default_guest_kallsyms, |
| 79 | *default_guest_modules; | 79 | *default_guest_modules; |
| 80 | const char *guestmount; | 80 | const char *guestmount; |
| 81 | char *dso_list_str, | 81 | const char *dso_list_str, |
| 82 | *comm_list_str, | 82 | *comm_list_str, |
| 83 | *sym_list_str, | 83 | *sym_list_str, |
| 84 | *col_width_list_str; | 84 | *col_width_list_str; |
