提交 dbe6e283 编写于 作者: R Robert Richter

oprofile: simplify add_ibs_begin()

Signed-off-by: NRobert Richter <robert.richter@amd.com>
上级 3967e93e
......@@ -333,7 +333,7 @@ static void add_ibs_begin(int cpu, int code, struct mm_struct *mm)
sample = op_cpu_buffer_read_entry(cpu);
if (!sample)
goto Error;
return;
rip = sample->eip;
#ifdef __LP64__
......@@ -372,15 +372,12 @@ static void add_ibs_begin(int cpu, int code, struct mm_struct *mm)
for (i = 0; i < count; i++) {
sample = op_cpu_buffer_read_entry(cpu);
if (!sample)
goto Error;
return;
add_event_entry(sample->eip);
add_event_entry(sample->event);
}
return;
Error:
return;
}
#endif
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册