From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4C613C433EF for ; Fri, 11 Mar 2022 07:33:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S238104AbiCKHel (ORCPT ); Fri, 11 Mar 2022 02:34:41 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59096 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1347193AbiCKHed (ORCPT ); Fri, 11 Mar 2022 02:34:33 -0500 Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 933CF1B6E15; Thu, 10 Mar 2022 23:33:25 -0800 (PST) X-IronPort-AV: E=McAfee;i="6200,9189,10282"; a="318743586" X-IronPort-AV: E=Sophos;i="5.90,173,1643702400"; d="scan'208";a="318743586" Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Mar 2022 23:33:24 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,173,1643702400"; d="scan'208";a="548381735" Received: from linux.intel.com ([10.54.29.200]) by fmsmga007.fm.intel.com with ESMTP; 10 Mar 2022 23:33:23 -0800 Received: from abityuts-desk1.fi.intel.com (abityuts-desk1.fi.intel.com [10.237.68.32]) by linux.intel.com (Postfix) with ESMTP id 58249580DCB; Thu, 10 Mar 2022 23:33:21 -0800 (PST) Message-ID: Subject: Re: [PATCH v2 2/2] intel_idle: Add a new flag to initialize the AMX state From: Artem Bityutskiy To: "Chang S. Bae" , "Rafael J. Wysocki" Cc: Linux Kernel Mailing List , the arch/x86 maintainers , Linux PM , Thomas Gleixner , Dave Hansen , Peter Zijlstra , Borislav Petkov , "Ravi V. Shankar" Date: Fri, 11 Mar 2022 09:33:20 +0200 In-Reply-To: <8fc192be-348d-0102-22ab-57b974e9d840@intel.com> References: <20220309223431.26560-1-chang.seok.bae@intel.com> <20220309223431.26560-3-chang.seok.bae@intel.com> <8fc192be-348d-0102-22ab-57b974e9d840@intel.com> Content-Type: text/plain; charset="UTF-8" User-Agent: Evolution 3.38.4 (3.38.4-1.fc33) MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org On Thu, 2022-03-10 at 10:50 -0800, Chang S. Bae wrote: > On 3/10/2022 10:34 AM, Rafael J. Wysocki wrote: > > On Wed, Mar 9, 2022 at 11:42 PM Chang S. Bae > > wrote: > > > > [...] > > > @@ -792,7 +805,8 @@ static struct cpuidle_state spr_cstates[] __initdata = > > > { > > >          { > > >                  .name = "C6", > > >                  .desc = "MWAIT 0x20", > > > -               .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED, > > > +               .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED | \ > > > > Why is the backslash at the end of the line needed? > > No, it is not needed. > > Sorry, I think I was mindlessly following the style in this new c-state > table: > https://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux- > pm.git/tree/drivers/idle/intel_idle.c?h=linux-next#n787 > > Thanks, > Chang > Sorry, too much python programming lately, so I automatically added the back- slash. Let me know if you would remove that backslash at the same time, or I can submit a patch. Artem.