aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86
diff options
context:
space:
mode:
authorPeter Zijlstra <a.p.zijlstra@chello.nl>2009-06-02 09:13:03 -0400
committerIngo Molnar <mingo@elte.hu>2009-06-02 15:45:30 -0400
commitb23f3325ed465f1bd914384884269af0d106778c (patch)
tree7b263c707e50463f1e1defc60d371b09e352a21a /arch/x86
parent8e5799b1ad2a0567fdfaaf0e91b40efee010f2c1 (diff)
perf_counter: Rename various fields
A few renames: s/irq_period/sample_period/ s/irq_freq/sample_freq/ s/PERF_RECORD_/PERF_SAMPLE_/ s/record_type/sample_type/ And change both the new sample_type and read_format to u64. Reported-by: Stephane Eranian <eranian@googlemail.com> Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Mike Galbraith <efault@gmx.de> Cc: Paul Mackerras <paulus@samba.org> Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com> Cc: Marcelo Tosatti <mtosatti@redhat.com> Cc: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: John Kacur <jkacur@redhat.com> LKML-Reference: <new-submission> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86')
-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 316b0c995f38..ec06aa5e9282 100644
--- a/arch/x86/kernel/cpu/perf_counter.c
+++ b/arch/x86/kernel/cpu/perf_counter.c
@@ -290,11 +290,11 @@ static int __hw_perf_counter_init(struct perf_counter *counter)
290 hwc->nmi = 1; 290 hwc->nmi = 1;
291 hw_event->nmi = 1; 291 hw_event->nmi = 1;
292 292
293 if (!hwc->irq_period) 293 if (!hwc->sample_period)
294 hwc->irq_period = x86_pmu.max_period; 294 hwc->sample_period = x86_pmu.max_period;
295 295
296 atomic64_set(&hwc->period_left, 296 atomic64_set(&hwc->period_left,
297 min(x86_pmu.max_period, hwc->irq_period)); 297 min(x86_pmu.max_period, hwc->sample_period));
298 298
299 /* 299 /*
300 * Raw event type provide the config in the event structure 300 * Raw event type provide the config in the event structure
@@ -462,7 +462,7 @@ x86_perf_counter_set_period(struct perf_counter *counter,
462 struct hw_perf_counter *hwc, int idx) 462 struct hw_perf_counter *hwc, int idx)
463{ 463{
464 s64 left = atomic64_read(&hwc->period_left); 464 s64 left = atomic64_read(&hwc->period_left);
465 s64 period = min(x86_pmu.max_period, hwc->irq_period); 465 s64 period = min(x86_pmu.max_period, hwc->sample_period);
466 int err; 466 int err;
467 467
468 /* 468 /*