From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1164935AbdDXFcA (ORCPT ); Mon, 24 Apr 2017 01:32:00 -0400 Received: from mail-wr0-f181.google.com ([209.85.128.181]:33846 "EHLO mail-wr0-f181.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758931AbdDXFbt (ORCPT ); Mon, 24 Apr 2017 01:31:49 -0400 Date: Mon, 24 Apr 2017 07:31:45 +0200 From: Ingo Molnar To: Stephen Rothwell Cc: Thomas Gleixner , Ingo Molnar , "H. Peter Anvin" , Peter Zijlstra , Linux-Next Mailing List , Linux Kernel Mailing List , Steven Rostedt Subject: Re: linux-next: build failure after merge of the tip tree Message-ID: <20170424053145.xj3ftc2oujpcjdwx@gmail.com> References: <20170424133255.0a75cff1@canb.auug.org.au> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170424133255.0a75cff1@canb.auug.org.au> User-Agent: NeoMutt/20170113 (1.7.2) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Stephen Rothwell wrote: > Hi all, > > After merging the tip tree, today's linux-next build (arm > multi_v7_defconfig) failed like this: > > kernel/tracepoint.c: In function 'tracepoint_remove_func': > kernel/tracepoint.c:253:4: error: implicit declaration of function 'static_key_slow_dec_cpuslocked' [-Werror=implicit-function-declaration] > static_key_slow_dec_cpuslocked(&tp->key); > ^ > > Caused by commit > > 24db7a671bd5 ("trace/perf: Cure hotplug lock ordering issues") > > static_key_slow_dec_cpuslocked() is only defined if HAVE_JUMP_LABEL is > set - which is only defined if defined(CC_HAVE_ASM_GOTO) && > defined(CONFIG_JUMP_LABEL). CONFIG_JUMP_LABEL is not set for this build. > > I wasn't sure if just adding > > #define static_key_slow_dec_cpuslocked static_key_slow_dec > > in the !HAVE_JUMP_LABEL case in include/linux/jump_label.h would be > sufficient, so I have reverted that commit for today. Both are fine, thanks Stephen! It's all fixed up in tip:auto-latest as well. Thanks, Ingo