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 E3846C433F5 for ; Wed, 1 Dec 2021 00:27:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1345784AbhLAAad (ORCPT ); Tue, 30 Nov 2021 19:30:33 -0500 Received: from smtprelay0147.hostedemail.com ([216.40.44.147]:42756 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1345737AbhLAAaO (ORCPT ); Tue, 30 Nov 2021 19:30:14 -0500 Received: from omf08.hostedemail.com (clb03-v110.bra.tucows.net [216.40.38.60]) by smtprelay07.hostedemail.com (Postfix) with ESMTP id 692D718200A04; Wed, 1 Dec 2021 00:26:43 +0000 (UTC) Received: from [HIDDEN] (Authenticated sender: joe@perches.com) by omf08.hostedemail.com (Postfix) with ESMTPA id 11D2B516; Wed, 1 Dec 2021 00:26:39 +0000 (UTC) Message-ID: Subject: Re: [PATCH] x86/platform/uv: make const pointer dots a static const array From: Joe Perches To: Steve Wahl , Colin Ian King Cc: Mike Travis , Dimitri Sivanich , Russ Anderson , Darren Hart , Andy Shevchenko , Thomas Gleixner , Ingo Molnar , Borislav Petkov , Dave Hansen , x86@kernel.org, "H . Peter Anvin" , platform-driver-x86@vger.kernel.org, kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org Date: Tue, 30 Nov 2021 16:26:39 -0800 In-Reply-To: References: <20211127170320.77963-1-colin.i.king@gmail.com> Content-Type: text/plain; charset="ISO-8859-1" User-Agent: Evolution 3.40.4-1 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Stat-Signature: 8nkmn1zqzbke8kb9g4xjpgqpxscyxiah X-Rspamd-Server: rspamout02 X-Rspamd-Queue-Id: 11D2B516 X-Session-Marker: 6A6F6540706572636865732E636F6D X-Session-ID: U2FsdGVkX1/IurlOFoNDFvDHrR/xzjuMQccTBxFaNzg= X-HE-Tag: 1638318399-827544 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 2021-11-30 at 13:34 -0600, Steve Wahl wrote: > On Sat, Nov 27, 2021 at 05:03:20PM +0000, Colin Ian King wrote: > > Don't populate the const array dots on the stack [] > Examination of the disassembly shows that the compiler actually > eliminates the creation of the pointer "dots" on the stack and just > passes the address of the string constant to the printk function. > > So this change should not have any actual effect (I don't know where > you got the "shrinks object code" from), and in my humble opinion > makes the code less clear. Probably shrinks an allmodconfig where the symbols are referenced. It probably doesn't do anything to a defconfig. > As such, unless there's something here I don't understand, I vote to > reject this patch. [] > > but make it static > > const and make the pointer an array to remove a dereference. Shrinks > > object code a few bytes too. [] > > diff --git a/arch/x86/platform/uv/uv_nmi.c b/arch/x86/platform/uv/uv_nmi.c [] > > @@ -725,7 +725,7 @@ static void uv_nmi_dump_cpu_ip(int cpu, struct pt_regs *regs) > > */ > > static void uv_nmi_dump_state_cpu(int cpu, struct pt_regs *regs) > > { > > - const char *dots = " ................................. "; > > + static const char dots[] = " ................................. ";