mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-07 04:09:21 +00:00
oprofile/x86: fix crash when profiling more than 28 events
With multiplexing enabled oprofile crashs when profiling more than 28 events. This patch fixes this. Signed-off-by: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com> Signed-off-by: Robert Richter <robert.richter@amd.com>
This commit is contained in:
parent
92dcffb916
commit
d8cc108f4f
1 changed files with 1 additions and 1 deletions
|
@ -222,7 +222,7 @@ static void nmi_cpu_switch(void *dummy)
|
|||
|
||||
/* move to next set */
|
||||
si += model->num_counters;
|
||||
if ((si > model->num_virt_counters) || (counter_config[si].count == 0))
|
||||
if ((si >= model->num_virt_counters) || (counter_config[si].count == 0))
|
||||
per_cpu(switch_index, cpu) = 0;
|
||||
else
|
||||
per_cpu(switch_index, cpu) = si;
|
||||
|
|
Loading…
Reference in a new issue