projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4983955
)
perf/x86/amd: Fix RDPMC index calculation for AMD family 15h
author
Robert Richter
<
[email protected]
>
Fri, 15 Jun 2012 17:06:44 +0000
(19:06 +0200)
committer
Ingo Molnar
<
[email protected]
>
Mon, 18 Jun 2012 09:14:35 +0000
(11:14 +0200)
The RDPMC index calculation is wrong for AMD family 15h
(X86_FEATURE_ PERFCTR_CORE set). This leads to a #GP when
accessing the counter:
Pid: 2237, comm: syslog-ng Not tainted 3.5.0-rc1-perf-x86_64
-standard-g130ff90
#135 AMD Pike/Pike
RIP: 0010:[<
ffffffff8100dc33
>] [<
ffffffff8100dc33
>] x86_perf_event_update+0x27/0x66
While the msr address offset is (index << 1) we must use index to
select the correct rdpmc.
Signed-off-by: Robert Richter <
[email protected]
>
Acked-by: Peter Zijlstra <
[email protected]
>
Cc: Vince Weaver <
[email protected]
>
Signed-off-by: Ingo Molnar <
[email protected]
>
arch/x86/kernel/cpu/perf_event.c
patch
|
blob
|
history
diff --git
a/arch/x86/kernel/cpu/perf_event.c
b/arch/x86/kernel/cpu/perf_event.c
index 766c76d5ec4c242d310a98a9dfc0caf4af7cefab..d1f38c9509d02ba32b12fb93ab249cd76a64dc4d 100644
(file)
--- a/
arch/x86/kernel/cpu/perf_event.c
+++ b/
arch/x86/kernel/cpu/perf_event.c
@@
-823,7
+823,7
@@
static inline void x86_assign_hw_event(struct perf_event *event,
} else {
hwc->config_base = x86_pmu_config_addr(hwc->idx);
hwc->event_base = x86_pmu_event_addr(hwc->idx);
- hwc->event_base_rdpmc =
x86_pmu_addr_offset(hwc->idx)
;
+ hwc->event_base_rdpmc =
hwc->idx
;
}
}