diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2017-04-26 15:40:31 -0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2017-04-26 15:40:31 -0300 |
commit | 3caeafce5392a8eba7b36d0d097d403cacc66e2d (patch) | |
tree | 4dcf075012ca63f839c41da36a029a58df9d2159 /tools/perf/util/units.h | |
parent | 5068b52f732157385d9dccd205bc4043da3a3cce (diff) | |
download | linux-stable-3caeafce5392a8eba7b36d0d097d403cacc66e2d.tar.gz linux-stable-3caeafce5392a8eba7b36d0d097d403cacc66e2d.tar.bz2 linux-stable-3caeafce5392a8eba7b36d0d097d403cacc66e2d.zip |
perf units: Move parse_tag_value() to units.[ch]
Its basically to do units handling, so move to a more appropriately
named object.
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/n/tip-90ob9vfepui24l8l2makhd9u@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/units.h')
-rw-r--r-- | tools/perf/util/units.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/perf/util/units.h b/tools/perf/util/units.h index 3ed7774afaa9..f02c87317150 100644 --- a/tools/perf/util/units.h +++ b/tools/perf/util/units.h @@ -4,6 +4,13 @@ #include <stddef.h> #include <linux/types.h> +struct parse_tag { + char tag; + int mult; +}; + +unsigned long parse_tag_value(const char *str, struct parse_tag *tags); + unsigned long convert_unit(unsigned long value, char *unit); int unit_number__scnprintf(char *buf, size_t size, u64 n); |