aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/util.c
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2017-04-19 15:05:56 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2017-04-20 12:22:44 -0400
commit58db1d6e7d5d24afa2d32e916fd6f6b6d240ba93 (patch)
tree06771be58f7f44c42579561029bb811747a9678f /tools/perf/util/util.c
parent9607ad3a63871b074a57ce1facd04a230c38725c (diff)
perf tools: Move units conversion/formatting routines to separate object
Out of util.h, to disentangle it a bit more. 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-vpksyj3w5fk9t8s6mxmkajyr@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/util.c')
-rw-r--r--tools/perf/util/util.c35
1 files changed, 0 insertions, 35 deletions
diff --git a/tools/perf/util/util.c b/tools/perf/util/util.c
index bc42c459f586..7741d5f6022b 100644
--- a/tools/perf/util/util.c
+++ b/tools/perf/util/util.c
@@ -272,28 +272,6 @@ int copyfile(const char *from, const char *to)
272 return copyfile_mode(from, to, 0755); 272 return copyfile_mode(from, to, 0755);
273} 273}
274 274
275unsigned long convert_unit(unsigned long value, char *unit)
276{
277 *unit = ' ';
278
279 if (value > 1000) {
280 value /= 1000;
281 *unit = 'K';
282 }
283
284 if (value > 1000) {
285 value /= 1000;
286 *unit = 'M';
287 }
288
289 if (value > 1000) {
290 value /= 1000;
291 *unit = 'G';
292 }
293
294 return value;
295}
296
297static ssize_t ion(bool is_read, int fd, void *buf, size_t n) 275static ssize_t ion(bool is_read, int fd, void *buf, size_t n)
298{ 276{
299 void *buf_start = buf; 277 void *buf_start = buf;
@@ -731,16 +709,3 @@ int fetch_current_timestamp(char *buf, size_t sz)
731 709
732 return 0; 710 return 0;
733} 711}
734
735int unit_number__scnprintf(char *buf, size_t size, u64 n)
736{
737 char unit[4] = "BKMG";
738 int i = 0;
739
740 while (((n / 1024) > 1) && (i < 3)) {
741 n /= 1024;
742 i++;
743 }
744
745 return scnprintf(buf, size, "%" PRIu64 "%c", n, unit[i]);
746}