linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 1/3] tools/perf: Move kvm-stat header file from conditional inclusion to common include section
@ 2019-07-18 18:17 Anju T Sudhakar
  2019-07-18 18:17 ` [PATCH v2 2/3] tools/perf: Add arch neutral function to choose event for perf kvm record Anju T Sudhakar
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Anju T Sudhakar @ 2019-07-18 18:17 UTC (permalink / raw)
  To: mpe, acme, jolsa
  Cc: namhyung, peterz, alexander.shishkin, linux-kernel, linuxppc-dev,
	maddy, anju, ravi.bangoria

Move kvm-stat header file to the common include section, and make the
definitions in the header file under the conditional inclusion 
`#ifdef HAVE_KVM_STAT_SUPPORT`.

This helps to define other perf kvm related function prototypes in
kvm-stat header file, which may not need kvm-stat support.

Signed-off-by: Anju T Sudhakar <anju@linux.vnet.ibm.com>
---
 tools/perf/builtin-kvm.c   | 2 +-
 tools/perf/util/kvm-stat.h | 3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/tools/perf/builtin-kvm.c b/tools/perf/builtin-kvm.c
index b33c83489120..5d2b34d290a3 100644
--- a/tools/perf/builtin-kvm.c
+++ b/tools/perf/builtin-kvm.c
@@ -19,6 +19,7 @@
 #include "util/top.h"
 #include "util/data.h"
 #include "util/ordered-events.h"
+#include "util/kvm-stat.h"
 
 #include <sys/prctl.h>
 #ifdef HAVE_TIMERFD_SUPPORT
@@ -55,7 +56,6 @@ static const char *get_filename_for_perf_kvm(void)
 }
 
 #ifdef HAVE_KVM_STAT_SUPPORT
-#include "util/kvm-stat.h"
 
 void exit_event_get_key(struct perf_evsel *evsel,
 			struct perf_sample *sample,
diff --git a/tools/perf/util/kvm-stat.h b/tools/perf/util/kvm-stat.h
index 1403dec189b4..b3b2670e1a2b 100644
--- a/tools/perf/util/kvm-stat.h
+++ b/tools/perf/util/kvm-stat.h
@@ -2,6 +2,8 @@
 #ifndef __PERF_KVM_STAT_H
 #define __PERF_KVM_STAT_H
 
+#ifdef HAVE_KVM_STAT_SUPPORT
+
 #include "../perf.h"
 #include "tool.h"
 #include "stat.h"
@@ -144,5 +146,6 @@ extern const int decode_str_len;
 extern const char *kvm_exit_reason;
 extern const char *kvm_entry_trace;
 extern const char *kvm_exit_trace;
+#endif /* HAVE_KVM_STAT_SUPPORT */
 
 #endif /* __PERF_KVM_STAT_H */
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2019-09-20 16:22 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-18 18:17 [PATCH v2 1/3] tools/perf: Move kvm-stat header file from conditional inclusion to common include section Anju T Sudhakar
2019-07-18 18:17 ` [PATCH v2 2/3] tools/perf: Add arch neutral function to choose event for perf kvm record Anju T Sudhakar
2019-09-20 16:20   ` [tip: perf/urgent] perf kvm: " tip-bot2 for Anju T Sudhakar
2019-07-18 18:17 ` [PATCH v2 3/3] tools/perf: Set 'trace_cycles' as defaultevent for perf kvm record in powerpc Anju T Sudhakar
2019-09-20 16:20   ` [tip: perf/urgent] perf kvm stat: Set 'trace_cycles' as default event for 'perf kvm record' " tip-bot2 for Anju T Sudhakar
2019-07-19  5:28 ` [PATCH v2 1/3] tools/perf: Move kvm-stat header file from conditional inclusion to common include section Ravi Bangoria
2019-09-19  0:05   ` Arnaldo Carvalho de Melo
2019-09-20 16:20 ` [tip: perf/urgent] perf kvm: " tip-bot2 for Anju T Sudhakar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).