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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2E50CC05027 for ; Wed, 1 Feb 2023 04:21:51 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231329AbjBAEVt (ORCPT ); Tue, 31 Jan 2023 23:21:49 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37596 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231237AbjBAEVn (ORCPT ); Tue, 31 Jan 2023 23:21:43 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 9EE2858646 for ; Tue, 31 Jan 2023 20:21:16 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 0705DB82024 for ; Wed, 1 Feb 2023 04:21:15 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 85115C433D2; Wed, 1 Feb 2023 04:21:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1675225273; bh=A3vnx1Zkxou8lcn4KNqCZbnQCUfhASYXZOHqL2TmZPQ=; h=Date:From:To:Cc:Subject:Reply-To:References:In-Reply-To:From; b=FvhYRZfqp2QjaGpkxNBteeDkNquH6sUX5q/48tzqZ/xI1d/YWSFKhoqWg52JygeOo QFPGYZ5SHDwUAnhX5BS2g3EV3AiQU6X1oAVhHGRVfvQkzhro1i/9nB1sX/Lshw2ter iMh6A82XVmT597YTofPZYP68z/iIqICJCs2QizS4u21UbxPYJrOzFWrQyR8tKWUY3M OfNKT8T3tn/5tSsUk9ccv2lPYeV4cecTTWNRMPnSHl4ld7dnvIw6uGpgEhhl8urvWi 1y511cWwtjIasfd0XU+1D4aCtfpnkLqnPhCcvJFXye0/Nur1lDlTTb0Gw9nUB28MAp 9cKrdNTxKZ2Pw== Received: by paulmck-ThinkPad-P17-Gen-1.home (Postfix, from userid 1000) id 235D55C0623; Tue, 31 Jan 2023 20:21:13 -0800 (PST) Date: Tue, 31 Jan 2023 20:21:13 -0800 From: "Paul E. McKenney" To: Josh Poimboeuf Cc: Peter Zijlstra , sfr@canb.auug.org.au, linux-kernel@vger.kernel.org Subject: Re: objtool warning for next-20221118 Message-ID: <20230201042113.GA3871307@paulmck-ThinkPad-P17-Gen-1> Reply-To: paulmck@kernel.org References: <20221123002258.GR4001@paulmck-ThinkPad-P17-Gen-1> <20221123014812.7gptbvvndzemt5nc@treble> <20221123174951.GZ4001@paulmck-ThinkPad-P17-Gen-1> <20221123181941.fh4hrr3pazelwtxc@treble> <20221123191242.GG4001@paulmck-ThinkPad-P17-Gen-1> <20221123223214.gxwyrakfj7nbs2fb@treble> <20221123230612.GM4001@paulmck-ThinkPad-P17-Gen-1> <20230128190634.GA1043262@paulmck-ThinkPad-P17-Gen-1> <20230201000247.3x3jev6xxxxkfrnm@treble> <20230201003311.GZ2948950@paulmck-ThinkPad-P17-Gen-1> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230201003311.GZ2948950@paulmck-ThinkPad-P17-Gen-1> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Jan 31, 2023 at 04:33:11PM -0800, Paul E. McKenney wrote: > On Tue, Jan 31, 2023 at 04:02:47PM -0800, Josh Poimboeuf wrote: > > On Sat, Jan 28, 2023 at 11:06:34AM -0800, Paul E. McKenney wrote: > > > Sorry to be a nag, but I am still seeing this. Not a huge problem because > > > I now filter it out so that it does not get in the way of other bugs, > > > but I figured that I should follow up. > > > > Does this fix it? (works for me) > > A quick touch test indicates that it does indeed fix it, thank you! > > I am also rerunning the exact test setup that generated the original > warning, but I don't expect any nasty surprises. And no nasty surprises, again, thank you! Tested-by: Paul E. McKenney Thanx, Paul > > If so, I'll need to extend it for all arches. > > > > diff --git a/arch/x86/kernel/process.c b/arch/x86/kernel/process.c > > index 40d156a31676..5db0daba750f 100644 > > --- a/arch/x86/kernel/process.c > > +++ b/arch/x86/kernel/process.c > > @@ -712,6 +712,7 @@ void arch_cpu_idle_enter(void) > > void arch_cpu_idle_dead(void) > > { > > play_dead(); > > + BUG(); > > } > > > > /* > > diff --git a/include/linux/cpu.h b/include/linux/cpu.h > > index 314802f98b9d..7fbbd1572288 100644 > > --- a/include/linux/cpu.h > > +++ b/include/linux/cpu.h > > @@ -185,7 +185,7 @@ void arch_cpu_idle(void); > > void arch_cpu_idle_prepare(void); > > void arch_cpu_idle_enter(void); > > void arch_cpu_idle_exit(void); > > -void arch_cpu_idle_dead(void); > > +void __noreturn arch_cpu_idle_dead(void); > > > > int cpu_report_state(int cpu); > > int cpu_check_up_prepare(int cpu); > > diff --git a/kernel/sched/idle.c b/kernel/sched/idle.c > > index f26ab2675f7d..921b8b3e3d0c 100644 > > --- a/kernel/sched/idle.c > > +++ b/kernel/sched/idle.c > > @@ -71,7 +71,7 @@ static noinline int __cpuidle cpu_idle_poll(void) > > void __weak arch_cpu_idle_prepare(void) { } > > void __weak arch_cpu_idle_enter(void) { } > > void __weak arch_cpu_idle_exit(void) { } > > -void __weak arch_cpu_idle_dead(void) { } > > +void __weak arch_cpu_idle_dead(void) { while (1); } > > void __weak arch_cpu_idle(void) > > { > > cpu_idle_force_poll = 1; > > diff --git a/tools/objtool/check.c b/tools/objtool/check.c > > index 4b7c8b33069e..a9cb925bf095 100644 > > --- a/tools/objtool/check.c > > +++ b/tools/objtool/check.c > > @@ -167,6 +167,7 @@ static bool __dead_end_function(struct objtool_file *file, struct symbol *func, > > "__reiserfs_panic", > > "__stack_chk_fail", > > "__ubsan_handle_builtin_unreachable", > > + "arch_cpu_idle_dead", > > "cpu_bringup_and_idle", > > "cpu_startup_entry", > > "do_exit",