From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754545Ab1B1OeF (ORCPT ); Mon, 28 Feb 2011 09:34:05 -0500 Received: from mga11.intel.com ([192.55.52.93]:37590 "EHLO mga11.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754271Ab1B1OeD (ORCPT ); Mon, 28 Feb 2011 09:34:03 -0500 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.62,239,1297065600"; d="scan'208";a="891955106" Subject: Re: [PATCH v2 -tip] perf: x86, add SandyBridge support From: Lin Ming To: Stephane Eranian Cc: Peter Zijlstra , Ingo Molnar , Andi Kleen , lkml In-Reply-To: References: <1298877772.4937.25.camel@minggr.sh.intel.com> <1298884559.2428.10083.camel@twins> Content-Type: text/plain; charset="UTF-8" Date: Mon, 28 Feb 2011 22:33:46 +0800 Message-Id: <1298903626.2169.52.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.28.0 (2.28.0-2.fc12) Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 2011-02-28 at 20:25 +0800, Stephane Eranian wrote: > On Mon, Feb 28, 2011 at 10:15 AM, Peter Zijlstra wrote: > > On Mon, 2011-02-28 at 15:22 +0800, Lin Ming wrote: > >> This patch adds basic SandyBridge support, including hardware cache > >> events and PEBS events support. > >> > >> LLC-* hareware cache events don't work for now, it depends on the > >> offcore patches. > > > > What's the status of those, Stephane reported some problems last I > > remember? > > > > > >> #define INTEL_EVENT_CONSTRAINT(c, n) \ > >> EVENT_CONSTRAINT(c, n, ARCH_PERFMON_EVENTSEL_EVENT) > >> +#define INTEL_EVENT_CONSTRAINT2(c, n) \ > >> + EVENT_CONSTRAINT(c, n, INTEL_ARCH_EVENT_MASK) > > > > That's a particularly bad name, how about something like > > > > INTEL_UEVENT_CONSTRAINT or somesuch. > > > >> @@ -702,7 +738,13 @@ static void intel_ds_init(void) > >> printk(KERN_CONT "PEBS fmt1%c, ", pebs_type); > >> x86_pmu.pebs_record_size = sizeof(struct pebs_record_nhm); > >> x86_pmu.drain_pebs = intel_pmu_drain_pebs_nhm; > >> - x86_pmu.pebs_constraints = intel_nehalem_pebs_events; > >> + switch (boot_cpu_data.x86_model) { > >> + case 42: /* SandyBridge */ > >> + x86_pmu.pebs_constraints = intel_snb_pebs_events; > >> + break; > >> + default: > >> + x86_pmu.pebs_constraints = intel_nehalem_pebs_events; > >> + } > >> break; > >> > >> default: > > > > We already have this massive model switch right after this function, > > might as well move the pebs constraint assignment there. > > > My PEBS patch was going to cleanup this part, though it was using > it's own switch > statement. Did you send out the patch? A link?