From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 3ADCF7E for ; Wed, 27 Apr 2022 03:25:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1651029927; x=1682565927; h=date:from:to:cc:subject:message-id:references: mime-version:in-reply-to; bh=I/D36ogdcL9qPxkkh7uSsit5MMJEkaxqwKjEaM3XMoA=; b=OO2K4r9dc/bugEMuXEQ7Oxun28aXnAwkA4ILQtwRidPW8amgR/l8TTkv 9vrtGOogX8TS6Vik2RRy8gdvnArK5BQBOw9MZI23tfgR6JraUjKDAGzt+ gOBBLcQzMC9P2q2kG2bvfoV3xJ9gcvvvwpXiBH7G/XH3LPOFczaLouI9n Hk6hvuhujss/UFZYFSMUwC+cvmv5XXeoFeuFZ30vtqPz89O/mHjqRPmNE 4qcFlwx6N5mlQqGnDomH7Hem1ZRoygvWmtKt5WBtMu4Mq2s7kjxmgC3fX /lMYcGoDFPPBVfY53mHGssz2MqZLaN9TJVVLrtPqbmw0gu1y3l3SOPvGB g==; X-IronPort-AV: E=McAfee;i="6400,9594,10329"; a="265322813" X-IronPort-AV: E=Sophos;i="5.90,292,1643702400"; d="scan'208";a="265322813" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 Apr 2022 20:25:26 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,292,1643702400"; d="scan'208";a="661015977" Received: from lkp-server01.sh.intel.com (HELO 5056e131ad90) ([10.239.97.150]) by fmsmga002.fm.intel.com with ESMTP; 26 Apr 2022 20:25:21 -0700 Received: from kbuild by 5056e131ad90 with local (Exim 4.95) (envelope-from ) id 1njYIr-0004Gi-5Y; Wed, 27 Apr 2022 03:25:21 +0000 Date: Wed, 27 Apr 2022 11:25:15 +0800 From: kernel test robot To: Peter Collingbourne , Andrey Konovalov , Hyeonggon Yoo <42.hyeyoo@gmail.com>, Andrew Morton , Catalin Marinas Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org, Linux Memory Management List , Peter Collingbourne , Linux ARM , Linux Kernel Mailing List , vbabka@suse.cz, penberg@kernel.org, roman.gushchin@linux.dev, iamjoonsoo.kim@lge.com, rientjes@google.com, Herbert Xu , Andrey Ryabinin , Alexander Potapenko , Dmitry Vyukov , kasan-dev , Eric Biederman , Kees Cook Subject: Re: [PATCH v4 1/2] printk: stop including cache.h from printk.h Message-ID: <202204271135.P05x34Pe-lkp@intel.com> References: <20220426203231.2107365-1-pcc@google.com> Precedence: bulk X-Mailing-List: llvm@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220426203231.2107365-1-pcc@google.com> Hi Peter, Thank you for the patch! Yet something to improve: [auto build test ERROR on vbabka-slab/for-next] [also build test ERROR on arm64/for-next/core linus/master v5.18-rc4 next-20220426] [cannot apply to dennis-percpu/for-next] [If your patch is applied to the wrong git tree, kindly drop us a note. And when submitting patch, we suggest to use '--base' as documented in https://git-scm.com/docs/git-format-patch] url: https://github.com/intel-lab-lkp/linux/commits/Peter-Collingbourne/printk-stop-including-cache-h-from-printk-h/20220427-043357 base: git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git for-next config: arm-randconfig-r025-20220425 (https://download.01.org/0day-ci/archive/20220427/202204271135.P05x34Pe-lkp@intel.com/config) compiler: clang version 15.0.0 (https://github.com/llvm/llvm-project 1cddcfdc3c683b393df1a5c9063252eb60e52818) reproduce (this is a W=1 build): wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross chmod +x ~/bin/make.cross # install arm cross compiling tool for clang build # apt-get install binutils-arm-linux-gnueabi # https://github.com/intel-lab-lkp/linux/commit/edcb0f592304f7849a39586f9e3fe0d8f6e6c6b9 git remote add linux-review https://github.com/intel-lab-lkp/linux git fetch --no-tags linux-review Peter-Collingbourne/printk-stop-including-cache-h-from-printk-h/20220427-043357 git checkout edcb0f592304f7849a39586f9e3fe0d8f6e6c6b9 # save the config file mkdir build_dir && cp config build_dir/.config COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=arm SHELL=/bin/bash If you fix the issue, kindly add following tag as appropriate Reported-by: kernel test robot All errors (new ones prefixed by >>): In file included from kernel/bpf/bpf_lru_list.c:8: >> kernel/bpf/bpf_lru_list.h:36:21: error: expected ';' at end of declaration list raw_spinlock_t lock ____cacheline_aligned_in_smp; ^ ; 1 error generated. vim +36 kernel/bpf/bpf_lru_list.h 3a08c2fd763450a Martin KaFai Lau 2016-11-11 29 3a08c2fd763450a Martin KaFai Lau 2016-11-11 30 struct bpf_lru_list { 3a08c2fd763450a Martin KaFai Lau 2016-11-11 31 struct list_head lists[NR_BPF_LRU_LIST_T]; 3a08c2fd763450a Martin KaFai Lau 2016-11-11 32 unsigned int counts[NR_BPF_LRU_LIST_COUNT]; 0ac16296ffc638f Qiujun Huang 2020-04-03 33 /* The next inactive list rotation starts from here */ 3a08c2fd763450a Martin KaFai Lau 2016-11-11 34 struct list_head *next_inactive_rotation; 3a08c2fd763450a Martin KaFai Lau 2016-11-11 35 3a08c2fd763450a Martin KaFai Lau 2016-11-11 @36 raw_spinlock_t lock ____cacheline_aligned_in_smp; 3a08c2fd763450a Martin KaFai Lau 2016-11-11 37 }; 3a08c2fd763450a Martin KaFai Lau 2016-11-11 38 -- 0-DAY CI Kernel Test Service https://01.org/lkp 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 893B7C433F5 for ; Wed, 27 Apr 2022 03:27:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=TpmwBqckWbar2+D9yzoBMf3fyKkplE+E4HBGX//+Qlk=; b=sZOyjETJuljF4T folfIR5NUZyIWsqz6/1Qx/Ga4ejDqrBg7/E1rTKNoRN/H5XVI6uCoaDyz2/SI4hI32Wro5SxlvRnW gYZgtAHUATfYN0Ov2Hq5eumdaQT8NupcaKWbddp+pwLEN1NoqZZK5j+Fy8NaBoGD7LlUoWKnkBPcS t0U3AsG6zdEHQfYRJFNd7zgM4YksZTWaHZ4vo/pjonZD1sMnsToW6Qjn2r7i52PKwZkd7ekHIUKxY alSfutzcVN3nYVkSr4ve0/n2nZ+yfICb5Rro+4z5GXqzY2C1FMG+MGmh2cLSDlRKhKbQ2KOZgRkrU jWSkgyDz27WJWxz5WD+Q==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1njYJk-00HDpm-Jg; Wed, 27 Apr 2022 03:26:18 +0000 Received: from mga04.intel.com ([192.55.52.120]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1njYIy-00HDNN-B7 for linux-arm-kernel@lists.infradead.org; Wed, 27 Apr 2022 03:25:30 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1651029928; x=1682565928; h=date:from:to:cc:subject:message-id:references: mime-version:in-reply-to; bh=I/D36ogdcL9qPxkkh7uSsit5MMJEkaxqwKjEaM3XMoA=; b=WRg+c9Kqr3skCk2G7Jq/oqqhG7aU4e22RqBFvY2hwnXaoqC8FJ3Edlh8 imS2P15/Z1HeY9zeWWP9to3rLPsSXmeC/nMUB4aVyZDyI+6Mbkuxpd297 xJEQJYwbU3gJ75oAO5cqLj6149EzMGHq4YseWCS+t47bQBH5YyjZ9+JBK 4JWOQhJf4PVDbODAJWiM6gSh/x1Mv2LDboE3tAtH805GMo8MKBa7OJVuZ +rqoLmrhKBWZ46MbJ9VUPB3WN+QiCpBr7q3f6iBw+j0MN2hcANT14kXMe RfyO7n27mO7VPD0WwLxZHCLFWThwxO9L2LFACHH+yUqFDFURb0DuhoCnm Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10329"; a="264645180" X-IronPort-AV: E=Sophos;i="5.90,292,1643702400"; d="scan'208";a="264645180" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 Apr 2022 20:25:26 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,292,1643702400"; d="scan'208";a="661015977" Received: from lkp-server01.sh.intel.com (HELO 5056e131ad90) ([10.239.97.150]) by fmsmga002.fm.intel.com with ESMTP; 26 Apr 2022 20:25:21 -0700 Received: from kbuild by 5056e131ad90 with local (Exim 4.95) (envelope-from ) id 1njYIr-0004Gi-5Y; Wed, 27 Apr 2022 03:25:21 +0000 Date: Wed, 27 Apr 2022 11:25:15 +0800 From: kernel test robot To: Peter Collingbourne , Andrey Konovalov , Hyeonggon Yoo <42.hyeyoo@gmail.com>, Andrew Morton , Catalin Marinas Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org, Linux Memory Management List , Peter Collingbourne , Linux ARM , Linux Kernel Mailing List , vbabka@suse.cz, penberg@kernel.org, roman.gushchin@linux.dev, iamjoonsoo.kim@lge.com, rientjes@google.com, Herbert Xu , Andrey Ryabinin , Alexander Potapenko , Dmitry Vyukov , kasan-dev , Eric Biederman , Kees Cook Subject: Re: [PATCH v4 1/2] printk: stop including cache.h from printk.h Message-ID: <202204271135.P05x34Pe-lkp@intel.com> References: <20220426203231.2107365-1-pcc@google.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20220426203231.2107365-1-pcc@google.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220426_202528_476206_52F24E89 X-CRM114-Status: GOOD ( 15.47 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Hi Peter, Thank you for the patch! Yet something to improve: [auto build test ERROR on vbabka-slab/for-next] [also build test ERROR on arm64/for-next/core linus/master v5.18-rc4 next-20220426] [cannot apply to dennis-percpu/for-next] [If your patch is applied to the wrong git tree, kindly drop us a note. And when submitting patch, we suggest to use '--base' as documented in https://git-scm.com/docs/git-format-patch] url: https://github.com/intel-lab-lkp/linux/commits/Peter-Collingbourne/printk-stop-including-cache-h-from-printk-h/20220427-043357 base: git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git for-next config: arm-randconfig-r025-20220425 (https://download.01.org/0day-ci/archive/20220427/202204271135.P05x34Pe-lkp@intel.com/config) compiler: clang version 15.0.0 (https://github.com/llvm/llvm-project 1cddcfdc3c683b393df1a5c9063252eb60e52818) reproduce (this is a W=1 build): wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross chmod +x ~/bin/make.cross # install arm cross compiling tool for clang build # apt-get install binutils-arm-linux-gnueabi # https://github.com/intel-lab-lkp/linux/commit/edcb0f592304f7849a39586f9e3fe0d8f6e6c6b9 git remote add linux-review https://github.com/intel-lab-lkp/linux git fetch --no-tags linux-review Peter-Collingbourne/printk-stop-including-cache-h-from-printk-h/20220427-043357 git checkout edcb0f592304f7849a39586f9e3fe0d8f6e6c6b9 # save the config file mkdir build_dir && cp config build_dir/.config COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=arm SHELL=/bin/bash If you fix the issue, kindly add following tag as appropriate Reported-by: kernel test robot All errors (new ones prefixed by >>): In file included from kernel/bpf/bpf_lru_list.c:8: >> kernel/bpf/bpf_lru_list.h:36:21: error: expected ';' at end of declaration list raw_spinlock_t lock ____cacheline_aligned_in_smp; ^ ; 1 error generated. vim +36 kernel/bpf/bpf_lru_list.h 3a08c2fd763450a Martin KaFai Lau 2016-11-11 29 3a08c2fd763450a Martin KaFai Lau 2016-11-11 30 struct bpf_lru_list { 3a08c2fd763450a Martin KaFai Lau 2016-11-11 31 struct list_head lists[NR_BPF_LRU_LIST_T]; 3a08c2fd763450a Martin KaFai Lau 2016-11-11 32 unsigned int counts[NR_BPF_LRU_LIST_COUNT]; 0ac16296ffc638f Qiujun Huang 2020-04-03 33 /* The next inactive list rotation starts from here */ 3a08c2fd763450a Martin KaFai Lau 2016-11-11 34 struct list_head *next_inactive_rotation; 3a08c2fd763450a Martin KaFai Lau 2016-11-11 35 3a08c2fd763450a Martin KaFai Lau 2016-11-11 @36 raw_spinlock_t lock ____cacheline_aligned_in_smp; 3a08c2fd763450a Martin KaFai Lau 2016-11-11 37 }; 3a08c2fd763450a Martin KaFai Lau 2016-11-11 38 -- 0-DAY CI Kernel Test Service https://01.org/lkp _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel