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 X-Spam-Level: X-Spam-Status: No, score=-7.3 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING,SPF_HELO_NONE,SPF_PASS, USER_AGENT_SANE_2 autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 33112C35280 for ; Wed, 2 Oct 2019 15:43:51 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 0B7E5222C0 for ; Wed, 2 Oct 2019 15:43:51 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728899AbfJBPnu (ORCPT ); Wed, 2 Oct 2019 11:43:50 -0400 Received: from mx2.suse.de ([195.135.220.15]:38754 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1725875AbfJBPnu (ORCPT ); Wed, 2 Oct 2019 11:43:50 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 5296DAC7D; Wed, 2 Oct 2019 15:43:45 +0000 (UTC) Message-ID: <1570031352.22393.4.camel@suse.cz> Subject: Re: [PATCH v2 1/2] x86,sched: Add support for frequency invariance From: Giovanni Gherdovich To: kbuild test robot Cc: kbuild-all@01.org, Srinivas Pandruvada , Thomas Gleixner , Ingo Molnar , Peter Zijlstra , Borislav Petkov , Len Brown , "Rafael J . Wysocki" , x86@kernel.org, linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org, Mel Gorman , Matt Fleming , Viresh Kumar , Juri Lelli , Paul Turner , Vincent Guittot , Quentin Perret , Dietmar Eggemann , Doug Smythies Date: Wed, 02 Oct 2019 17:49:12 +0200 In-Reply-To: <201910022359.6gxzMDqF%lkp@intel.com> References: <20191002122926.385-2-ggherdovich@suse.cz> <201910022359.6gxzMDqF%lkp@intel.com> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.26.6 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 2019-10-02 at 23:23 +0800, kbuild test robot wrote: > Hi Giovanni, > > Thank you for the patch! Yet something to improve: > > [auto build test ERROR on tip/sched/core] > [cannot apply to v5.4-rc1 next-20191002] > [if your patch is applied to the wrong git tree, please drop us a note to help > improve the system. BTW, we also suggest to use '--base' option to specify the > base tree in git format-patch, please see https://stackoverflow.com/a/37406982] Noted, thanks. Indeed this patch applies to the master branch of the "tip" tree, git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git , and depends on 5ebb34edbefa8 "x86/intel: Aggregate microserver naming". I'll use '--base' in the future. Giovanni > > url: https://github.com/0day-ci/linux/commits/Giovanni-Gherdovich/Add-support-for-frequency-invariance-for-some-x86/20191002-221807 > config: x86_64-defconfig (attached as .config) > compiler: gcc-7 (Debian 7.4.0-13) 7.4.0 > reproduce: > # save the attached .config to linux build tree > make ARCH=x86_64 > > If you fix the issue, kindly add following tag > Reported-by: kbuild test robot > > All errors (new ones prefixed by >>): > > > > arch/x86/kernel/smpboot.c:1834:7: error: 'INTEL_FAM6_ATOM_GOLDMONT_D' undeclared here (not in a function); did you mean 'INTEL_FAM6_ATOM_GOLDMONT_X'? > > ICPU(INTEL_FAM6_ATOM_GOLDMONT_D), > ^ > arch/x86/kernel/smpboot.c:1824:25: note: in definition of macro 'ICPU' > { X86_VENDOR_INTEL, 6, model, X86_FEATURE_APERFMPERF, 0} > ^~~~~ > > vim +1834 arch/x86/kernel/smpboot.c > > 1831 > 1832 static const struct x86_cpu_id has_turbo_ratio_group_limits[] = { > 1833 ICPU(INTEL_FAM6_ATOM_GOLDMONT), > > 1834 ICPU(INTEL_FAM6_ATOM_GOLDMONT_D), > > 1835 ICPU(INTEL_FAM6_ATOM_GOLDMONT_PLUS), > 1836 ICPU(INTEL_FAM6_SKYLAKE_X), > 1837 {} > 1838 }; > 1839 > > --- > 0-DAY kernel test infrastructure Open Source Technology Center > https://lists.01.org/pipermail/kbuild-all Intel Corporation From mboxrd@z Thu Jan 1 00:00:00 1970 Content-Type: multipart/mixed; boundary="===============2203839741831399448==" MIME-Version: 1.0 From: Giovanni Gherdovich To: kbuild-all@lists.01.org Subject: Re: [PATCH v2 1/2] x86, sched: Add support for frequency invariance Date: Wed, 02 Oct 2019 17:49:12 +0200 Message-ID: <1570031352.22393.4.camel@suse.cz> In-Reply-To: <201910022359.6gxzMDqF%lkp@intel.com> List-Id: --===============2203839741831399448== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable On Wed, 2019-10-02 at 23:23 +0800, kbuild test robot wrote: > Hi Giovanni, > = > Thank you for the patch! Yet something to improve: > = > [auto build test ERROR on tip/sched/core] > [cannot apply to v5.4-rc1 next-20191002] > [if your patch is applied to the wrong git tree, please drop us a note to= help > improve the system. BTW, we also suggest to use '--base' option to specif= y the > base tree in git format-patch, please see https://stackoverflow.com/a/374= 06982] Noted, thanks. Indeed this patch applies to the master branch of the "tip" tree, git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git , and depends on 5ebb34edbefa8 "x86/intel: Aggregate microserver naming". I'll use '--base' in the future. Giovanni > = > url: https://github.com/0day-ci/linux/commits/Giovanni-Gherdovich/Add-= support-for-frequency-invariance-for-some-x86/20191002-221807 > config: x86_64-defconfig (attached as .config) > compiler: gcc-7 (Debian 7.4.0-13) 7.4.0 > reproduce: > # save the attached .config to linux build tree > make ARCH=3Dx86_64 = > = > If you fix the issue, kindly add following tag > Reported-by: kbuild test robot > = > All errors (new ones prefixed by >>): > = > > > arch/x86/kernel/smpboot.c:1834:7: error: 'INTEL_FAM6_ATOM_GOLDMONT_D'= undeclared here (not in a function); did you mean 'INTEL_FAM6_ATOM_GOLDMON= T_X'? > = > ICPU(INTEL_FAM6_ATOM_GOLDMONT_D), > ^ > arch/x86/kernel/smpboot.c:1824:25: note: in definition of macro 'ICPU' > { X86_VENDOR_INTEL, 6, model, X86_FEATURE_APERFMPERF, 0} > ^~~~~ > = > vim +1834 arch/x86/kernel/smpboot.c > = > 1831 = > 1832 static const struct x86_cpu_id has_turbo_ratio_group_limits[] =3D { > 1833 ICPU(INTEL_FAM6_ATOM_GOLDMONT), > > 1834 ICPU(INTEL_FAM6_ATOM_GOLDMONT_D), > = > 1835 ICPU(INTEL_FAM6_ATOM_GOLDMONT_PLUS), > 1836 ICPU(INTEL_FAM6_SKYLAKE_X), > 1837 {} > 1838 }; > 1839 = > = > --- > 0-DAY kernel test infrastructure Open Source Technology Ce= nter > https://lists.01.org/pipermail/kbuild-all Intel Corpora= tion --===============2203839741831399448==--