diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2017-04-19 15:15:13 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2017-04-24 11:33:26 -0400 |
commit | bb8c16db43e48f2012c3ae8c7d682f834c5986d9 (patch) | |
tree | 0a922455bf4fa3cad1153d08876e32ff9a033477 /tools/perf/builtin-kvm.c | |
parent | c5e4027e056c3027f682f0d69fe9fd75083b65f8 (diff) |
perf kvm: Make function only used by 'perf kvm' static
No need to have this polluting util.h, it was polluted enough already.
Link: http://lkml.kernel.org/n/tip-wfdidqlwbvi5y0s61kv6z2gn@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-kvm.c')
-rw-r--r-- | tools/perf/builtin-kvm.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tools/perf/builtin-kvm.c b/tools/perf/builtin-kvm.c index d86ac0ac2c99..129af3e9c728 100644 --- a/tools/perf/builtin-kvm.c +++ b/tools/perf/builtin-kvm.c | |||
@@ -36,6 +36,20 @@ | |||
36 | #include <pthread.h> | 36 | #include <pthread.h> |
37 | #include <math.h> | 37 | #include <math.h> |
38 | 38 | ||
39 | static const char *get_filename_for_perf_kvm(void) | ||
40 | { | ||
41 | const char *filename; | ||
42 | |||
43 | if (perf_host && !perf_guest) | ||
44 | filename = strdup("perf.data.host"); | ||
45 | else if (!perf_host && perf_guest) | ||
46 | filename = strdup("perf.data.guest"); | ||
47 | else | ||
48 | filename = strdup("perf.data.kvm"); | ||
49 | |||
50 | return filename; | ||
51 | } | ||
52 | |||
39 | #ifdef HAVE_KVM_STAT_SUPPORT | 53 | #ifdef HAVE_KVM_STAT_SUPPORT |
40 | #include "util/kvm-stat.h" | 54 | #include "util/kvm-stat.h" |
41 | 55 | ||