From patchwork Fri Feb 5 00:40:36 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tim Gardner X-Patchwork-Id: 44582 X-Patchwork-Delegate: apw@canonical.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from chlorine.canonical.com (chlorine.canonical.com [91.189.94.204]) by ozlabs.org (Postfix) with ESMTP id 5A837B7D14 for ; Fri, 5 Feb 2010 11:42:58 +1100 (EST) Received: from localhost ([127.0.0.1] helo=chlorine.canonical.com) by chlorine.canonical.com with esmtp (Exim 4.69) (envelope-from ) id 1NdCHZ-0001d9-Hu; Fri, 05 Feb 2010 00:42:49 +0000 Received: from mail.tpi.com ([70.99.223.143]) by chlorine.canonical.com with esmtp (Exim 4.69) (envelope-from ) id 1NdCHX-0001d3-MF for kernel-team@lists.ubuntu.com; Fri, 05 Feb 2010 00:42:47 +0000 Received: from sepang.rtg.net (unknown [10.0.2.5]) by mail.tpi.com (Postfix) with ESMTP id BD55B2124AC; Thu, 4 Feb 2010 16:42:13 -0800 (PST) Received: by sepang.rtg.net (Postfix, from userid 1000) id D6FF3F8980; Thu, 4 Feb 2010 17:40:36 -0700 (MST) To: apw@canonical.com Subject: Lucid pull request, oprofile/x86: add Xeon 7500 series support Message-Id: <20100205004036.D6FF3F8980@sepang.rtg.net> Date: Thu, 4 Feb 2010 17:40:36 -0700 (MST) From: timg@tpi.com (Tim Gardner) Cc: kernel-team@lists.ubuntu.com X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.9 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: kernel-team-bounces@lists.ubuntu.com Errors-To: kernel-team-bounces@lists.ubuntu.com The following changes since commit 91a6b3ca66b3d7e089a32ee903447cceabbb76dc: Andi Kleen (1): [Upstream]: oprofile/x86: add Xeon 7500 series support are available in the git repository at: git://kernel.ubuntu.com/rtg/ubuntu-lucid.git xeon-oprofile From 91a6b3ca66b3d7e089a32ee903447cceabbb76dc Mon Sep 17 00:00:00 2001 From: Andi Kleen Date: Thu, 21 Jan 2010 23:26:27 +0100 Subject: [PATCH] [Upstream]: oprofile/x86: add Xeon 7500 series support Add Xeon 7500 series support to oprofile. https://lists.ubuntu.com/archives/kernel-team/2010-January/008547.html Picked from git://git.kernel.org/pub/scm/linux/kernel/git/rric/oprofile.git Straight forward: it's the same as Core i7, so just detect the model number. No user space changes needed. Signed-off-by: Andi Kleen Signed-off-by: Robert Richter Signed-off-by: Tim Gardner --- arch/x86/oprofile/nmi_int.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/x86/oprofile/nmi_int.c b/arch/x86/oprofile/nmi_int.c index cb88b1a..5a14cd5 100644 --- a/arch/x86/oprofile/nmi_int.c +++ b/arch/x86/oprofile/nmi_int.c @@ -598,6 +598,7 @@ static int __init ppro_init(char **cpu_type) case 15: case 23: *cpu_type = "i386/core_2"; break; + case 0x2e: case 26: spec = &op_arch_perfmon_spec; *cpu_type = "i386/core_i7";