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 006BEEB64DD for ; Tue, 25 Jul 2023 06:03:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231993AbjGYGDI (ORCPT ); Tue, 25 Jul 2023 02:03:08 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35992 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231931AbjGYGC6 (ORCPT ); Tue, 25 Jul 2023 02:02:58 -0400 Received: from 1wt.eu (ded1.1wt.eu [163.172.96.212]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id CE9CF19C; Mon, 24 Jul 2023 23:02:55 -0700 (PDT) Received: (from willy@localhost) by mail.home.local (8.17.1/8.17.1/Submit) id 36P62XYK025841; Tue, 25 Jul 2023 08:02:33 +0200 Date: Tue, 25 Jul 2023 08:02:33 +0200 From: Willy Tarreau To: Zhangjin Wu Cc: arnd@arndb.de, linux-kernel@vger.kernel.org, linux-kselftest@vger.kernel.org, thomas@t-8ch.de Subject: Re: [PATCH v1 8/8] selftests/nolibc: add test support for powerpc64 Message-ID: References: <20230722121019.GD17311@1wt.eu> <20230725055031.15203-1-falcon@tinylab.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230725055031.15203-1-falcon@tinylab.org> Precedence: bulk List-ID: X-Mailing-List: linux-kselftest@vger.kernel.org On Tue, Jul 25, 2023 at 01:50:31PM +0800, Zhangjin Wu wrote: > Hi, Willy > > > > > On Wed, Jul 19, 2023 at 05:18:32AM +0800, Zhangjin Wu wrote: > > > # ARCH is supported by kernel > > > +ARCH_powerpc64 = powerpc > > > ARCH_powerpc64le = powerpc > > > > And similarly let's simply call this one ppc64. > > > > Well, I like these short ones too, what about also a ppc alias for > powerpc? > > ARCH_ppc = powerpc > ARCH_ppc64 = powerpc > ARCH_ppc64le = powerpc I thought about it as well. It could avoid the confusion between the arch name (powerpc) that's used for both 32/64 and the user-requested one. Willy