Commit 8067b3da authored by Anju T Sudhakar's avatar Anju T Sudhakar Committed by Arnaldo Carvalho de Melo

perf kvm: Move kvm-stat header file from conditional inclusion to common include section

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: default avatarAnju T Sudhakar <anju@linux.vnet.ibm.com>
Reviewed-By: default avatarRavi Bangoria <ravi.bangoria@linux.ibm.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Madhavan Srinivasan <maddy@linux.vnet.ibm.com>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: linuxppc-dev@lists.ozlabs.org
Link: http://lore.kernel.org/lkml/20190718181749.30612-1-anju@linux.vnet.ibm.comSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent ce095c9a
...@@ -21,6 +21,7 @@ ...@@ -21,6 +21,7 @@
#include "util/top.h" #include "util/top.h"
#include "util/data.h" #include "util/data.h"
#include "util/ordered-events.h" #include "util/ordered-events.h"
#include "util/kvm-stat.h"
#include "ui/ui.h" #include "ui/ui.h"
#include <sys/prctl.h> #include <sys/prctl.h>
...@@ -59,7 +60,6 @@ static const char *get_filename_for_perf_kvm(void) ...@@ -59,7 +60,6 @@ static const char *get_filename_for_perf_kvm(void)
} }
#ifdef HAVE_KVM_STAT_SUPPORT #ifdef HAVE_KVM_STAT_SUPPORT
#include "util/kvm-stat.h"
void exit_event_get_key(struct evsel *evsel, void exit_event_get_key(struct evsel *evsel,
struct perf_sample *sample, struct perf_sample *sample,
......
...@@ -2,6 +2,8 @@ ...@@ -2,6 +2,8 @@
#ifndef __PERF_KVM_STAT_H #ifndef __PERF_KVM_STAT_H
#define __PERF_KVM_STAT_H #define __PERF_KVM_STAT_H
#ifdef HAVE_KVM_STAT_SUPPORT
#include "tool.h" #include "tool.h"
#include "stat.h" #include "stat.h"
#include "record.h" #include "record.h"
...@@ -144,5 +146,6 @@ extern const int decode_str_len; ...@@ -144,5 +146,6 @@ extern const int decode_str_len;
extern const char *kvm_exit_reason; extern const char *kvm_exit_reason;
extern const char *kvm_entry_trace; extern const char *kvm_entry_trace;
extern const char *kvm_exit_trace; extern const char *kvm_exit_trace;
#endif /* HAVE_KVM_STAT_SUPPORT */
#endif /* __PERF_KVM_STAT_H */ #endif /* __PERF_KVM_STAT_H */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment