Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S966744AbcDLXzv (ORCPT ); Tue, 12 Apr 2016 19:55:51 -0400 Received: from g2t4625.austin.hp.com ([15.73.212.76]:44433 "EHLO g2t4625.austin.hp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S964815AbcDLXzu (ORCPT ); Tue, 12 Apr 2016 19:55:50 -0400 Message-ID: <1460505012.2465.147.camel@j-VirtualBox> Subject: Re: [PATCH] MCS spinlock: Use smp_cond_load_acquire() From: Jason Low To: kbuild test robot Cc: kbuild-all@01.org, Peter Zijlstra , Will Deacon , Linus Torvalds , linux-kernel@vger.kernel.org, mingo@redhat.com, paulmck@linux.vnet.ibm.com, terry.rudd@hpe.com, waiman.long@hpe.com, boqun.feng@gmail.com, dave@stgolabs.net, jason.low2@hp.com Date: Tue, 12 Apr 2016 16:50:12 -0700 In-Reply-To: <1460504455.2465.141.camel@j-VirtualBox> References: <201604130658.n9ttDvqp%fengguang.wu@intel.com> <1460504455.2465.141.camel@j-VirtualBox> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.10.4-0ubuntu2 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1395 Lines: 34 On Tue, 2016-04-12 at 16:40 -0700, Jason Low wrote: > On Wed, 2016-04-13 at 06:39 +0800, kbuild test robot wrote: > > Hi Jason, > > > > [auto build test ERROR on v4.6-rc3] > > [also build test ERROR on next-20160412] > > [cannot apply to tip/core/locking] > > [if your patch is applied to the wrong git tree, please drop us a note to help improving the system] > > > > url: https://github.com/0day-ci/linux/commits/Jason-Low/MCS-spinlock-Use-smp_cond_load_acquire/20160413-053726 > > config: i386-randconfig-s0-201615 (attached as .config) > > reproduce: > > # save the attached .config to linux build tree > > make ARCH=i386 > > > > All error/warnings (new ones prefixed by >>): > > > > In file included from kernel/locking/qspinlock.c:70:0: > > kernel/locking/mcs_spinlock.h: In function 'mcs_spin_lock': > > >> kernel/locking/mcs_spinlock.h:31:2: error: implicit declaration of function 'smp_cond_load_acquire' [-Werror=implicit-function-declaration] > > smp_cond_load_acquire(&l, VAL); \ > > Hello, > > This patch depends on the "smp_cond_load_acquire + cmpwait" patchset, > which is in: > > git://git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git locking/rfc Although I added an extra & in "smp_cond_load_acquire(&l, VAL)" when I recreated the patch. l is already a pointer, so this call should really be: smp_cond_load_acquire(l, VAL);