From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S941673AbcJYKgh (ORCPT ); Tue, 25 Oct 2016 06:36:37 -0400 Received: from mga02.intel.com ([134.134.136.20]:18093 "EHLO mga02.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933825AbcJYKge (ORCPT ); Tue, 25 Oct 2016 06:36:34 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,545,1473145200"; d="scan'208";a="183545077" From: "Luc, Piotr" To: "lenb@kernel.org" CC: "linux-kernel@vger.kernel.org" , "linux-pm@vger.kernel.org" , "x86@kernel.org" Subject: Re: [RESEND,04/11] x86/intel_idle: Add Knights Mill CPUID Thread-Topic: [RESEND,04/11] x86/intel_idle: Add Knights Mill CPUID Thread-Index: AQHSLqkGj/mepbiQK0yWqPd/K5cDMaC4576A Date: Tue, 25 Oct 2016 10:36:29 +0000 Message-ID: <1477391475.3927.36.camel@intel.com> References: <20161013153105.2517-5-piotr.luc@intel.com> In-Reply-To: <20161013153105.2517-5-piotr.luc@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.237.138.164] Content-Type: text/plain; charset="utf-8" Content-ID: <40A2B3D8EE5EA0409B983A8F8A921C03@intel.com> MIME-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from base64 to 8bit by mail.home.local id u9PAagX2021247 Hi Len, Could you tell me what more do I need to do to get the patchset accepted? The mentioned path 03/11 is already merged in 4.9.rc2. Thanks, Piotr On Thu, 2016-10-13 at 17:30 +0200, Piotr Luc wrote: > Add Knights Mill (KNM) to the list of CPUIDs supported by intel_idle. > > Signed-off-by: Piotr Luc > Reviewed-by: Dave Hansen > Cc: linux-pm@vger.kernel.org > Cc: Len Brown > Cc: linux-kernel@vger.kernel.org > --- > This patch depends on [PATCH 03/11] x86/cpu/intel: Add Knights Mill  > to Intel family > >  drivers/idle/intel_idle.c | 1 + >  1 file changed, 1 insertion(+) > > diff --git a/drivers/idle/intel_idle.c b/drivers/idle/intel_idle.c > index 67ec58f..69047a0 100644 > --- a/drivers/idle/intel_idle.c > +++ b/drivers/idle/intel_idle.c > @@ -1084,6 +1084,7 @@ static const struct x86_cpu_id intel_idle_ids[] > __initconst = { >   ICPU(INTEL_FAM6_KABYLAKE_DESKTOP, idle_cpu_skl), >   ICPU(INTEL_FAM6_SKYLAKE_X, idle_cpu_skx), >   ICPU(INTEL_FAM6_XEON_PHI_KNL, idle_cpu_knl), > + ICPU(INTEL_FAM6_XEON_PHI_KNM, idle_cpu_knl), >   ICPU(INTEL_FAM6_ATOM_GOLDMONT, idle_cpu_bxt), >   ICPU(INTEL_FAM6_ATOM_DENVERTON, idle_cpu_dnv) > , >   {}