From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754925Ab3LDIe4 (ORCPT ); Wed, 4 Dec 2013 03:34:56 -0500 Received: from mail-wg0-f45.google.com ([74.125.82.45]:64115 "EHLO mail-wg0-f45.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753817Ab3LDIey (ORCPT ); Wed, 4 Dec 2013 03:34:54 -0500 Date: Wed, 4 Dec 2013 09:34:55 +0100 From: Stephane Eranian To: linux-kernel@vger.kernel.org Cc: peterz@infradead.org, ingo@elte.hu, ak@linux.intel.com, jolsa@redhat.com, zheng.z.yan@intel.com Subject: [PATCH] perf/x86: fix bug in event constraint end marker macro Message-ID: <20131204083455.GA9629@quad> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The EVENT_CONSTRAINT_END macro defines the end marker as a constraint with a weight of zero. This was all fine until we blacklisted the corrupting memory events on Intel IvyBridge. These events are blacklisted by using a counter bitmask of zero. Thus, they also get a constraint weight of zero. The iteration macro: for_each_constraint tests the weight==0. Therefore, it was stopping at the first blacklisted event, i.e., 0xd0. The corrupting events were therefore considered as unconstrained and were scheduled on any of the generic counters. This patch fixes the end marker to have a weight of -1. With this, the blacklisted events get an empty constraint and cannot be scheduled which is what we want for now. Signed-off-by: Stephane Eranian --- arch/x86/kernel/cpu/perf_event.h | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/arch/x86/kernel/cpu/perf_event.h b/arch/x86/kernel/cpu/perf_event.h index fd00bb2..7c900c9 100644 --- a/arch/x86/kernel/cpu/perf_event.h +++ b/arch/x86/kernel/cpu/perf_event.h @@ -263,10 +263,16 @@ struct cpu_hw_events { HWEIGHT(n), 0, PERF_X86_EVENT_PEBS_ST_HSW) #define EVENT_CONSTRAINT_END \ - EVENT_CONSTRAINT(0, 0, 0) + { .idxmsk64 = 0, \ + .code = 0, \ + .cmask = 0, \ + .weight = -1, \ + .overlap = 0, \ + .flags = 0, \ +} #define for_each_event_constraint(e, c) \ - for ((e) = (c); (e)->weight; (e)++) + for ((e) = (c); (e)->weight != -1; (e)++) /* * Extra registers for specific events. -- 1.8.1.2