From: Andrey Ryabinin <aryabi...@virtuozzo.com>

3.12-stable review patch.  If anyone has any objections, please let me know.

===============

commit 6d6f2833bfbf296101f9f085e10488aef2601ba5 upstream.

Jim reported:

        UBSAN: Undefined behaviour in arch/x86/events/intel/core.c:3708:12
        shift exponent 35 is too large for 32-bit type 'long unsigned int'

The use of 'unsigned long' type obviously is not correct here, make it
'unsigned long long' instead.

Reported-by: Jim Cromie <jim.cro...@gmail.com>
Signed-off-by: Andrey Ryabinin <aryabi...@virtuozzo.com>
Signed-off-by: Peter Zijlstra (Intel) <pet...@infradead.org>
Cc: Alexander Shishkin <alexander.shish...@linux.intel.com>
Cc: Arnaldo Carvalho de Melo <a...@redhat.com>
Cc: H. Peter Anvin <h...@zytor.com>
Cc: Imre Palik <im...@amazon.de>
Cc: Jiri Olsa <jo...@redhat.com>
Cc: Linus Torvalds <torva...@linux-foundation.org>
Cc: Peter Zijlstra <pet...@infradead.org>
Cc: Stephane Eranian <eran...@google.com>
Cc: Thomas Gleixner <t...@linutronix.de>
Cc: Vince Weaver <vincent.wea...@maine.edu>
Fixes: 2c33645d366d ("perf/x86: Honor the architectural performance monitoring 
version")
Link: 
http://lkml.kernel.org/r/1462974711-10037-1-git-send-email-aryabi...@virtuozzo.com
Signed-off-by: Ingo Molnar <mi...@kernel.org>
Cc: Kevin Christopher <kev...@vmware.com>
Signed-off-by: Jiri Slaby <jsl...@suse.cz>
---
 arch/x86/kernel/cpu/perf_event_intel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/kernel/cpu/perf_event_intel.c 
b/arch/x86/kernel/cpu/perf_event_intel.c
index 491d6813ea3f..04e7df068f0e 100644
--- a/arch/x86/kernel/cpu/perf_event_intel.c
+++ b/arch/x86/kernel/cpu/perf_event_intel.c
@@ -2543,7 +2543,7 @@ __init int intel_pmu_init(void)
                                c->idxmsk64 |= (1ULL << x86_pmu.num_counters) - 
1;
                        }
                        c->idxmsk64 &=
-                               ~(~0UL << (INTEL_PMC_IDX_FIXED + 
x86_pmu.num_counters_fixed));
+                               ~(~0ULL << (INTEL_PMC_IDX_FIXED + 
x86_pmu.num_counters_fixed));
                        c->weight = hweight64(c->idxmsk64);
                }
        }
-- 
2.9.1

Reply via email to