aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/cpu
diff options
context:
space:
mode:
authorPeter Zijlstra <a.p.zijlstra@chello.nl>2009-03-23 13:22:06 -0400
committerIngo Molnar <mingo@elte.hu>2009-04-06 03:30:25 -0400
commitf4a2deb4860497f4332cf6a1acddab3dd628ddf0 (patch)
tree1655c7c000edce20d2c5b54cf12f99c23340371e /arch/x86/kernel/cpu
parentaf9522cf133e9be6da8525a46a9ed7e7659f0e1a (diff)
perf_counter: remove the event config bitfields
Since the bitfields turned into a bit of a mess, remove them and rely on good old masks. Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Paul Mackerras <paulus@samba.org> Orig-LKML-Reference: <20090323172417.059499915@chello.nl> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/cpu')
-rw-r--r--arch/x86/kernel/cpu/perf_counter.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/x86/kernel/cpu/perf_counter.c b/arch/x86/kernel/cpu/perf_counter.c
index 902282d68b0c..3f95b0cdc550 100644
--- a/arch/x86/kernel/cpu/perf_counter.c
+++ b/arch/x86/kernel/cpu/perf_counter.c
@@ -217,15 +217,15 @@ static int __hw_perf_counter_init(struct perf_counter *counter)
217 /* 217 /*
218 * Raw event type provide the config in the event structure 218 * Raw event type provide the config in the event structure
219 */ 219 */
220 if (hw_event->raw_type) { 220 if (perf_event_raw(hw_event)) {
221 hwc->config |= pmc_ops->raw_event(hw_event->raw_event_id); 221 hwc->config |= pmc_ops->raw_event(perf_event_config(hw_event));
222 } else { 222 } else {
223 if (hw_event->event_id >= pmc_ops->max_events) 223 if (perf_event_id(hw_event) >= pmc_ops->max_events)
224 return -EINVAL; 224 return -EINVAL;
225 /* 225 /*
226 * The generic map: 226 * The generic map:
227 */ 227 */
228 hwc->config |= pmc_ops->event_map(hw_event->event_id); 228 hwc->config |= pmc_ops->event_map(perf_event_id(hw_event));
229 } 229 }
230 counter->wakeup_pending = 0; 230 counter->wakeup_pending = 0;
231 231