From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933306AbcJQIxI (ORCPT ); Mon, 17 Oct 2016 04:53:08 -0400 Received: from terminus.zytor.com ([198.137.202.10]:46154 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932306AbcJQIwt (ORCPT ); Mon, 17 Oct 2016 04:52:49 -0400 Date: Mon, 17 Oct 2016 01:50:56 -0700 From: tip-bot for Piotr Luc Message-ID: Cc: linux-kernel@vger.kernel.org, dvlasenk@redhat.com, dave.hansen@intel.com, torvalds@linux-foundation.org, piotr.luc@intel.com, jpoimboe@redhat.com, bp@alien8.de, brgerst@gmail.com, peterz@infradead.org, tglx@linutronix.de, hpa@zytor.com, mingo@kernel.org, luto@kernel.org Reply-To: piotr.luc@intel.com, dvlasenk@redhat.com, dave.hansen@intel.com, linux-kernel@vger.kernel.org, torvalds@linux-foundation.org, jpoimboe@redhat.com, peterz@infradead.org, bp@alien8.de, brgerst@gmail.com, mingo@kernel.org, luto@kernel.org, tglx@linutronix.de, hpa@zytor.com In-Reply-To: <20161012182758.2925-1-piotr.luc@intel.com> References: <20161012182758.2925-1-piotr.luc@intel.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:x86/urgent] perf/x86/intel/uncore: Add Knights Mill CPUID Git-Commit-ID: ba2f81575eba8dcf128354169c20ae23f810f652 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: ba2f81575eba8dcf128354169c20ae23f810f652 Gitweb: http://git.kernel.org/tip/ba2f81575eba8dcf128354169c20ae23f810f652 Author: Piotr Luc AuthorDate: Wed, 12 Oct 2016 20:27:58 +0200 Committer: Ingo Molnar CommitDate: Mon, 17 Oct 2016 10:45:09 +0200 perf/x86/intel/uncore: Add Knights Mill CPUID Add Knights Mill (KNM) to the list of CPUIDs supported by PMU. Signed-off-by: Piotr Luc Reviewed-by: Dave Hansen Cc: Andy Lutomirski Cc: Borislav Petkov Cc: Brian Gerst Cc: Denys Vlasenko Cc: H. Peter Anvin Cc: Josh Poimboeuf Cc: Linus Torvalds Cc: Peter Zijlstra Cc: Thomas Gleixner Link: http://lkml.kernel.org/r/20161012182758.2925-1-piotr.luc@intel.com Signed-off-by: Ingo Molnar --- arch/x86/events/intel/uncore.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/x86/events/intel/uncore.c b/arch/x86/events/intel/uncore.c index d9844cc..efca268 100644 --- a/arch/x86/events/intel/uncore.c +++ b/arch/x86/events/intel/uncore.c @@ -1349,6 +1349,7 @@ static const struct x86_cpu_id intel_uncore_match[] __initconst = { X86_UNCORE_MODEL_MATCH(INTEL_FAM6_BROADWELL_X, bdx_uncore_init), X86_UNCORE_MODEL_MATCH(INTEL_FAM6_BROADWELL_XEON_D, bdx_uncore_init), X86_UNCORE_MODEL_MATCH(INTEL_FAM6_XEON_PHI_KNL, knl_uncore_init), + X86_UNCORE_MODEL_MATCH(INTEL_FAM6_XEON_PHI_KNM, knl_uncore_init), X86_UNCORE_MODEL_MATCH(INTEL_FAM6_SKYLAKE_DESKTOP,skl_uncore_init), X86_UNCORE_MODEL_MATCH(INTEL_FAM6_SKYLAKE_MOBILE, skl_uncore_init), X86_UNCORE_MODEL_MATCH(INTEL_FAM6_SKYLAKE_X, skx_uncore_init),