From: Vineet Gupta Date: Thu, 28 Nov 2013 10:19:59 +0000 (+0530) Subject: ARC: [perf] Fix a few thinkos X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=da990a4f2d5a321911026c26c7eeec3bbc6fb7b7;p=deliverable%2Flinux.git ARC: [perf] Fix a few thinkos Signed-off-by: Vineet Gupta --- diff --git a/arch/arc/kernel/perf_event.c b/arch/arc/kernel/perf_event.c index e46d81f70979..63177e4cb66d 100644 --- a/arch/arc/kernel/perf_event.c +++ b/arch/arc/kernel/perf_event.c @@ -79,9 +79,9 @@ static int arc_pmu_cache_event(u64 config) cache_result = (config >> 16) & 0xff; if (cache_type >= PERF_COUNT_HW_CACHE_MAX) return -EINVAL; - if (cache_type >= PERF_COUNT_HW_CACHE_OP_MAX) + if (cache_op >= PERF_COUNT_HW_CACHE_OP_MAX) return -EINVAL; - if (cache_type >= PERF_COUNT_HW_CACHE_RESULT_MAX) + if (cache_result >= PERF_COUNT_HW_CACHE_RESULT_MAX) return -EINVAL; ret = arc_pmu_cache_map[cache_type][cache_op][cache_result];