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 E249BC43334 for ; Mon, 25 Jul 2022 01:46:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231843AbiGYBq6 (ORCPT ); Sun, 24 Jul 2022 21:46:58 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51988 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230306AbiGYBqt (ORCPT ); Sun, 24 Jul 2022 21:46:49 -0400 Received: from gate.crashing.org (gate.crashing.org [63.228.1.57]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 2D09B2673 for ; Sun, 24 Jul 2022 18:46:48 -0700 (PDT) Received: from gate.crashing.org (localhost.localdomain [127.0.0.1]) by gate.crashing.org (8.14.1/8.14.1) with ESMTP id 26P1f2gP023146; Sun, 24 Jul 2022 20:41:02 -0500 Received: (from segher@localhost) by gate.crashing.org (8.14.1/8.14.1/Submit) id 26P1f1YV023145; Sun, 24 Jul 2022 20:41:01 -0500 X-Authentication-Warning: gate.crashing.org: segher set sender to segher@kernel.crashing.org using -f Date: Sun, 24 Jul 2022 20:41:01 -0500 From: Segher Boessenkool To: Masahiro Yamada Cc: Michael Ellerman , Benjamin Herrenschmidt , Paul Mackerras , linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] powerpc/purgatory: Omit use of bin2c Message-ID: <20220725014100.GQ25951@gate.crashing.org> References: <20220625224037.836581-1-masahiroy@kernel.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220625224037.836581-1-masahiroy@kernel.org> User-Agent: Mutt/1.4.2.3i Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, Jun 26, 2022 at 07:40:37AM +0900, Masahiro Yamada wrote: > The .incbin assembler directive is much faster than bin2c + $(CC). And perhaps more importantly it is simpler and less clumsy. > --- /dev/null > +++ b/arch/powerpc/purgatory/kexec-purgatory.S > @@ -0,0 +1,14 @@ > +/* SPDX-License-Identifier: GPL-2.0 */ > + > + .section .rodata, "a" > + > + .align 8 > +kexec_purgatory: > + .globl kexec_purgatory > + .incbin "arch/powerpc/purgatory/purgatory.ro" > +.Lkexec_purgatroy_end: Typo here (s/ro/or/) > + > + .align 8 > +kexec_purgatory_size: > + .globl kexec_purgatory_size > + .quad .Lkexec_purgatroy_end - kexec_purgatory And here again ofc. Looks good to me otherwise, nice cleanup :-) Reviewed-by: Segher Boessenkool Segher