Commit ebf8d974 authored by Robert Richter's avatar Robert Richter

oprofile: remove #ifdef CONFIG_OPROFILE_IBS in non-ibs code

The ifdefs can be removed since the code is no longer ibs specific and
can be used for other purposes as well. IBS specific code is only in
op_model_amd.c.
Signed-off-by: default avatarRobert Richter <robert.richter@amd.com>
parent 465634ad
...@@ -316,8 +316,6 @@ static void add_trace_begin(void) ...@@ -316,8 +316,6 @@ static void add_trace_begin(void)
add_event_entry(TRACE_BEGIN_CODE); add_event_entry(TRACE_BEGIN_CODE);
} }
#ifdef CONFIG_OPROFILE_IBS
static void add_data(struct op_entry *entry, struct mm_struct *mm) static void add_data(struct op_entry *entry, struct mm_struct *mm)
{ {
unsigned long code, pc, val; unsigned long code, pc, val;
...@@ -355,8 +353,6 @@ static void add_data(struct op_entry *entry, struct mm_struct *mm) ...@@ -355,8 +353,6 @@ static void add_data(struct op_entry *entry, struct mm_struct *mm)
add_event_entry(val); add_event_entry(val);
} }
#endif
static inline void add_sample_entry(unsigned long offset, unsigned long event) static inline void add_sample_entry(unsigned long offset, unsigned long event)
{ {
add_event_entry(offset); add_event_entry(offset);
...@@ -544,10 +540,8 @@ void sync_buffer(int cpu) ...@@ -544,10 +540,8 @@ void sync_buffer(int cpu)
cookie = get_exec_dcookie(mm); cookie = get_exec_dcookie(mm);
add_user_ctx_switch(new, cookie); add_user_ctx_switch(new, cookie);
} }
#ifdef CONFIG_OPROFILE_IBS
if (op_cpu_buffer_get_size(&entry)) if (op_cpu_buffer_get_size(&entry))
add_data(&entry, mm); add_data(&entry, mm);
#endif
continue; continue;
} }
......
...@@ -361,8 +361,6 @@ void oprofile_add_sample(struct pt_regs * const regs, unsigned long event) ...@@ -361,8 +361,6 @@ void oprofile_add_sample(struct pt_regs * const regs, unsigned long event)
__oprofile_add_ext_sample(pc, regs, event, is_kernel); __oprofile_add_ext_sample(pc, regs, event, is_kernel);
} }
#ifdef CONFIG_OPROFILE_IBS
/* /*
* Add samples with data to the ring buffer. * Add samples with data to the ring buffer.
* *
...@@ -397,8 +395,6 @@ void oprofile_add_data(struct op_entry *entry, struct pt_regs * const regs, ...@@ -397,8 +395,6 @@ void oprofile_add_data(struct op_entry *entry, struct pt_regs * const regs,
cpu_buf->sample_lost_overflow++; cpu_buf->sample_lost_overflow++;
} }
#endif
void oprofile_add_pc(unsigned long pc, int is_kernel, unsigned long event) void oprofile_add_pc(unsigned long pc, int is_kernel, unsigned long event)
{ {
struct oprofile_cpu_buffer *cpu_buf = &__get_cpu_var(cpu_buffer); struct oprofile_cpu_buffer *cpu_buf = &__get_cpu_var(cpu_buffer);
......
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