diff options
author | James Hogan <james.hogan@imgtec.com> | 2013-02-27 11:48:42 -0500 |
---|---|---|
committer | James Hogan <james.hogan@imgtec.com> | 2013-03-15 09:20:10 -0400 |
commit | 9344de1b1c64b2217f3b15508266deff2a8d6c84 (patch) | |
tree | 7502e44ac7976606a681e049332e7a98343027f3 | |
parent | 2033dc54e6fffac01f6129c0038c2e78102cf59a (diff) |
metag: perf: use hard_processor_id() to get thread
Use hard_processor_id() to get the current thread number rather than
get_cpu() and the hardware thread mapping. There was no matching
put_cpu(), and in any case this should be slightly more efficient.
Signed-off-by: James Hogan <james.hogan@imgtec.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
-rw-r--r-- | arch/metag/kernel/perf/perf_event.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/metag/kernel/perf/perf_event.c b/arch/metag/kernel/perf/perf_event.c index 6210126de78a..54fde35b4b9c 100644 --- a/arch/metag/kernel/perf/perf_event.c +++ b/arch/metag/kernel/perf/perf_event.c | |||
@@ -22,9 +22,9 @@ | |||
22 | #include <linux/slab.h> | 22 | #include <linux/slab.h> |
23 | 23 | ||
24 | #include <asm/core_reg.h> | 24 | #include <asm/core_reg.h> |
25 | #include <asm/hwthread.h> | ||
26 | #include <asm/io.h> | 25 | #include <asm/io.h> |
27 | #include <asm/irq.h> | 26 | #include <asm/irq.h> |
27 | #include <asm/processor.h> | ||
28 | 28 | ||
29 | #include "perf_event.h" | 29 | #include "perf_event.h" |
30 | 30 | ||
@@ -651,7 +651,7 @@ static void metag_pmu_enable_counter(struct hw_perf_event *event, int idx) | |||
651 | } | 651 | } |
652 | 652 | ||
653 | tmp = ((config & 0xf) << 28) | | 653 | tmp = ((config & 0xf) << 28) | |
654 | ((1 << 24) << cpu_2_hwthread_id[get_cpu()]); | 654 | ((1 << 24) << hard_processor_id()); |
655 | if (metag_pmu->max_period) | 655 | if (metag_pmu->max_period) |
656 | /* | 656 | /* |
657 | * Cores supporting overflow interrupts may have had the counter | 657 | * Cores supporting overflow interrupts may have had the counter |