From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 AB14C33E9 for ; Sun, 24 Apr 2022 22:06:13 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 72FF6C385A7; Sun, 24 Apr 2022 22:06:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1650837973; bh=QM2gPpFhJMCw8SzHnaGDe9e/YubdMcUEfk/0Dsh1MUk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=FWqe6TXYTGEcuyVkpJpgLVerPLsZSOIWG3kwtsnmtRW5advkYeKQBIEiymO6bAbIg mNoqik26VUorYfwzG4XpQTQ9nNbHEmFHj4NZNgTm5fvAAw5u3U6ZTq/aSS6KSNyQm9 9Qu4zO51AjeJLmQa8RwYqQViFaOBKlx9ACioFEwMNbuAFSReA61DQnKyHsKqXCY7l5 31hNf7QOFE9wm7i4+iQ6ffQp4NLk6aOcxVm4p0ZrDv0tF4wKR+bm3yxZXeQFWmO4Q9 F65DCU0T2q2DvcGrEF61EKMU9HI2WKB/fLPjvyCPyMPrfWIE6cDLnTGszSA34IvGV5 32tTs07X5Q/Ww== Date: Sun, 24 Apr 2022 15:06:10 -0700 From: Nathan Chancellor To: kernel test robot Cc: Donghai Qiao , akpm@linux-foundation.org, sfr@canb.auug.org.au, arnd@arndb.de, peterz@infradead.org, heying24@huawei.com, andriy.shevchenko@linux.intel.com, axboe@kernel.dk, rdunlap@infradead.org, tglx@linutronix.de, gor@linux.ibm.com, llvm@lists.linux.dev, kbuild-all@lists.01.org, donghai.w.qiao@gmail.com, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2 05/11] smp: replace smp_call_function_single_async() with smp_call_private() Message-ID: References: <20220422200040.93813-6-dqiao@redhat.com> <202204231532.nXbSK9Tk-lkp@intel.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: <202204231532.nXbSK9Tk-lkp@intel.com> On Sat, Apr 23, 2022 at 03:30:18PM +0800, kernel test robot wrote: > Hi Donghai, > > Thank you for the patch! Perhaps something to improve: > > [auto build test WARNING on powerpc/next] > [also build test WARNING on rafael-pm/linux-next linus/master v5.18-rc3 next-20220422] > [cannot apply to tip/x86/core] > [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/Donghai-Qiao/smp-cross-CPU-call-interface/20220423-060436 > base: https://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git next > config: i386-randconfig-a002 (https://download.01.org/0day-ci/archive/20220423/202204231532.nXbSK9Tk-lkp@intel.com/config) > compiler: clang version 15.0.0 (https://github.com/llvm/llvm-project 5bd87350a5ae429baf8f373cb226a57b62f87280) > 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 > # https://github.com/intel-lab-lkp/linux/commit/3b8a90029bebdb77e2d5c0cd16f371e83d8ed2e8 > git remote add linux-review https://github.com/intel-lab-lkp/linux > git fetch --no-tags linux-review Donghai-Qiao/smp-cross-CPU-call-interface/20220423-060436 > git checkout 3b8a90029bebdb77e2d5c0cd16f371e83d8ed2e8 > # 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=i386 SHELL=/bin/bash > > If you fix the issue, kindly add following tag as appropriate > Reported-by: kernel test robot > > All warnings (new ones prefixed by >>): > > >> block/blk-mq.c:1065:39: warning: passing 4-byte aligned argument to 16-byte aligned parameter 2 of 'smp_call_private' may result in an unaligned pointer access [-Walign-mismatch] > smp_call_function_single_async(cpu, &rq->csd); > ^ > 1 warning generated. This warning was fixed by commit 1139aeb1c521 ("smp: Fix smp_call_function_single_async prototype"), which is undone by this proposed change, hence the warning. Cheers, Nathan From mboxrd@z Thu Jan 1 00:00:00 1970 Content-Type: multipart/mixed; boundary="===============0119456609416851628==" MIME-Version: 1.0 From: Nathan Chancellor To: kbuild-all@lists.01.org Subject: Re: [PATCH v2 05/11] smp: replace smp_call_function_single_async() with smp_call_private() Date: Sun, 24 Apr 2022 15:06:10 -0700 Message-ID: In-Reply-To: <202204231532.nXbSK9Tk-lkp@intel.com> List-Id: --===============0119456609416851628== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable On Sat, Apr 23, 2022 at 03:30:18PM +0800, kernel test robot wrote: > Hi Donghai, > = > Thank you for the patch! Perhaps something to improve: > = > [auto build test WARNING on powerpc/next] > [also build test WARNING on rafael-pm/linux-next linus/master v5.18-rc3 n= ext-20220422] > [cannot apply to tip/x86/core] > [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/Donghai-Qiao/smp-c= ross-CPU-call-interface/20220423-060436 > base: https://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git= next > config: i386-randconfig-a002 (https://download.01.org/0day-ci/archive/202= 20423/202204231532.nXbSK9Tk-lkp(a)intel.com/config) > compiler: clang version 15.0.0 (https://github.com/llvm/llvm-project 5bd8= 7350a5ae429baf8f373cb226a57b62f87280) > reproduce (this is a W=3D1 build): > wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbi= n/make.cross -O ~/bin/make.cross > chmod +x ~/bin/make.cross > # https://github.com/intel-lab-lkp/linux/commit/3b8a90029bebdb77e= 2d5c0cd16f371e83d8ed2e8 > git remote add linux-review https://github.com/intel-lab-lkp/linux > git fetch --no-tags linux-review Donghai-Qiao/smp-cross-CPU-call-= interface/20220423-060436 > git checkout 3b8a90029bebdb77e2d5c0cd16f371e83d8ed2e8 > # save the config file > mkdir build_dir && cp config build_dir/.config > COMPILER_INSTALL_PATH=3D$HOME/0day COMPILER=3Dclang make.cross W= =3D1 O=3Dbuild_dir ARCH=3Di386 SHELL=3D/bin/bash > = > If you fix the issue, kindly add following tag as appropriate > Reported-by: kernel test robot > = > All warnings (new ones prefixed by >>): > = > >> block/blk-mq.c:1065:39: warning: passing 4-byte aligned argument to 16= -byte aligned parameter 2 of 'smp_call_private' may result in an unaligned = pointer access [-Walign-mismatch] > smp_call_function_single_async(cpu, &rq->csd); > ^ > 1 warning generated. This warning was fixed by commit 1139aeb1c521 ("smp: Fix smp_call_function_single_async prototype"), which is undone by this proposed change, hence the warning. Cheers, Nathan --===============0119456609416851628==--