aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86/oprofile/op_model_amd.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/arch/x86/oprofile/op_model_amd.c b/arch/x86/oprofile/op_model_amd.c
index cc930467575d..e95268eb9220 100644
--- a/arch/x86/oprofile/op_model_amd.c
+++ b/arch/x86/oprofile/op_model_amd.c
@@ -132,7 +132,7 @@ op_amd_handle_ibs(struct pt_regs * const regs,
132 struct op_entry entry; 132 struct op_entry entry;
133 133
134 if (!has_ibs) 134 if (!has_ibs)
135 return 1; 135 return 0;
136 136
137 if (ibs_config.fetch_enabled) { 137 if (ibs_config.fetch_enabled) {
138 rdmsrl(MSR_AMD64_IBSFETCHCTL, ctl); 138 rdmsrl(MSR_AMD64_IBSFETCHCTL, ctl);
@@ -214,7 +214,10 @@ static void op_amd_stop_ibs(void)
214#else 214#else
215 215
216static inline int op_amd_handle_ibs(struct pt_regs * const regs, 216static inline int op_amd_handle_ibs(struct pt_regs * const regs,
217 struct op_msrs const * const msrs) { } 217 struct op_msrs const * const msrs)
218{
219 return 0;
220}
218static inline void op_amd_start_ibs(void) { } 221static inline void op_amd_start_ibs(void) { }
219static inline void op_amd_stop_ibs(void) { } 222static inline void op_amd_stop_ibs(void) { }
220 223