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 X-Spam-Level: X-Spam-Status: No, score=-14.0 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,INCLUDES_CR_TRAILER,INCLUDES_PATCH,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id CD557C4338F for ; Tue, 3 Aug 2021 11:36:50 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id B73A660BD3 for ; Tue, 3 Aug 2021 11:36:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235851AbhHCLg7 (ORCPT ); Tue, 3 Aug 2021 07:36:59 -0400 Received: from conssluserg-01.nifty.com ([210.131.2.80]:20533 "EHLO conssluserg-01.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235809AbhHCLgl (ORCPT ); Tue, 3 Aug 2021 07:36:41 -0400 Received: from mail-pj1-f52.google.com (mail-pj1-f52.google.com [209.85.216.52]) (authenticated) by conssluserg-01.nifty.com with ESMTP id 173BZxL8029685 for ; Tue, 3 Aug 2021 20:35:59 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conssluserg-01.nifty.com 173BZxL8029685 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1627990559; bh=4g7op37K4Z7RFzfmHtUvzT54GZur3wtjaNHjXMQo4LE=; h=References:In-Reply-To:From:Date:Subject:To:Cc:From; b=htrX2UOyfSgvrqYCB4WrfH/i9QHUI/emesVufbUbgrcdObAMnhi7Ashf/+earXB+O aoeMvnJJ7w1/jKS4GuTYGc+MMaeT3FAfGpjKQAP9zCLcuiHuMAduWaMRPP6sYOfQVW 6kuGCg1mNwVROEyKCKDObRlNvp6TT3g2EN6RbVFBvY0+nI42ni/rnz7rQyh4gC7/7y PIcPQvb7/PuDpTYqi2HN/81OkcPgp7OrOPa1CQwqxC1rRtXN+vK2McSQ0XBlfiy18c 4sIozc06sQsEuRkh06aMv4qw3ioHX/KdrLhv9JmJRvQSEvG0otFbO8M+L9pJevCWdh h5nOvyC8XE+8w== X-Nifty-SrcIP: [209.85.216.52] Received: by mail-pj1-f52.google.com with SMTP id u13-20020a17090abb0db0290177e1d9b3f7so3396386pjr.1 for ; Tue, 03 Aug 2021 04:35:59 -0700 (PDT) X-Gm-Message-State: AOAM533qqUMqzjJlPTt8L1rs/kil8NUo9vF/9IyZKtKo5+5BXiGYt5Vr JSM6SPiG7znQGx4WiZw/vldDyYmfZsTvrT1RRls= X-Google-Smtp-Source: ABdhPJwL89MAz94d0LBxKuDkJqZz8BdoQK05FCU7uOspMiDDfVIZYNvXNETLBcZjCjirIS25cqz74I4n89sJnpdKuGY= X-Received: by 2002:a17:902:e28a:b029:12c:13e9:1166 with SMTP id o10-20020a170902e28ab029012c13e91166mr1178827plc.47.1627990558641; Tue, 03 Aug 2021 04:35:58 -0700 (PDT) MIME-Version: 1.0 References: <20210729140527.443116-1-masahiroy@kernel.org> <20210802124624.GG18685@arm.com> <20210803090626.GA30265@willie-the-truck> In-Reply-To: <20210803090626.GA30265@willie-the-truck> From: Masahiro Yamada Date: Tue, 3 Aug 2021 20:35:19 +0900 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [PATCH] arm64: move the (z)install rules to arch/arm64/Makefile To: Will Deacon Cc: Catalin Marinas , linux-arm-kernel , Linux Kernel Mailing List Content-Type: text/plain; charset="UTF-8" Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Aug 3, 2021 at 6:06 PM Will Deacon wrote: > > On Tue, Aug 03, 2021 at 02:40:44PM +0900, Masahiro Yamada wrote: > > On Mon, Aug 2, 2021 at 9:46 PM Catalin Marinas wrote: > > > > > > On Thu, Jul 29, 2021 at 11:05:27PM +0900, Masahiro Yamada wrote: > > > > Currently, the (z)install targets in arch/arm64/Makefile descend into > > > > arch/arm64/boot/Makefile to invoke the shell script, but there is no > > > > good reason to do so. > > > > > > > > arch/arm64/Makefile can run the shell script directly. > > > > > > > > Signed-off-by: Masahiro Yamada > > > > --- > > > > > > > > arch/arm64/Makefile | 7 +++++-- > > > > arch/arm64/boot/Makefile | 8 -------- > > > > 2 files changed, 5 insertions(+), 10 deletions(-) > > > > > > Is this part of some cross-arch clean-up? I can see x86 for example does > > > the same thing. > > > > > > Thanks. > > > > > > > Yes. I want to do these cleanups tree-wide, but > > I sent patches per arch. > > > > Please pick it up to your arm64 tree > > if you do not mind. > > Just to confirm -- this would be for 5.15, right? > > Will Right. This is not a bug fix, but a clean-up. So, we can queue it for the next MW. -- Best Regards Masahiro Yamada 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 X-Spam-Level: X-Spam-Status: No, score=-14.7 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,INCLUDES_CR_TRAILER,INCLUDES_PATCH,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4050AC4338F for ; Tue, 3 Aug 2021 11:44:13 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 075B460EFD for ; Tue, 3 Aug 2021 11:44:13 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 075B460EFD Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:Cc:To:Subject:Message-ID:Date:From: In-Reply-To:References:MIME-Version:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=Crp+RzVhvMfBVVBO/ym1diT5eo61pXwW9TjU4i4C194=; b=ZMxrYS5lmcih4J 8/laEYbQ0+QzwfUZgkTB/CssRYnpMkfwAgvVPtRWbcemLWQVEQUvWnbO6kGYOgjTAEQPNW3wDZcKo n4HFfTp1hhTRRiPFOlRbQAVR9j5ePKP4blVl7Ge68kyGKAZJmMMKxrOwZwVEWUOZ+LgcVt4Fv5BOF ZNz9d/l2vOMTRATv6Z1sg6shKoaECxeCXK6Y5Dkr//Ntcl5Yw1sV3Vmw0XNXDZa2jFr4C4dPSYlUo 8x8ZeVwnlsB2eyRHyK8mAEQ6AH9IEgo5hOMQ6BzKY8gzKoswBkfrBbr2UFpj36YBmGsMbPYjJ+8TF hr06UtAq5lqHyY1392kA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1mAsnI-002Kz8-S4; Tue, 03 Aug 2021 11:41:14 +0000 Received: from conssluserg-06.nifty.com ([210.131.2.91]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1mAsic-002Ild-I1 for linux-arm-kernel@lists.infradead.org; Tue, 03 Aug 2021 11:36:24 +0000 Received: from mail-pl1-f174.google.com (mail-pl1-f174.google.com [209.85.214.174]) (authenticated) by conssluserg-06.nifty.com with ESMTP id 173BZx2U008205 for ; Tue, 3 Aug 2021 20:35:59 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conssluserg-06.nifty.com 173BZx2U008205 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1627990559; bh=4g7op37K4Z7RFzfmHtUvzT54GZur3wtjaNHjXMQo4LE=; h=References:In-Reply-To:From:Date:Subject:To:Cc:From; b=htrX2UOyfSgvrqYCB4WrfH/i9QHUI/emesVufbUbgrcdObAMnhi7Ashf/+earXB+O aoeMvnJJ7w1/jKS4GuTYGc+MMaeT3FAfGpjKQAP9zCLcuiHuMAduWaMRPP6sYOfQVW 6kuGCg1mNwVROEyKCKDObRlNvp6TT3g2EN6RbVFBvY0+nI42ni/rnz7rQyh4gC7/7y PIcPQvb7/PuDpTYqi2HN/81OkcPgp7OrOPa1CQwqxC1rRtXN+vK2McSQ0XBlfiy18c 4sIozc06sQsEuRkh06aMv4qw3ioHX/KdrLhv9JmJRvQSEvG0otFbO8M+L9pJevCWdh h5nOvyC8XE+8w== X-Nifty-SrcIP: [209.85.214.174] Received: by mail-pl1-f174.google.com with SMTP id k2so5797729plk.13 for ; Tue, 03 Aug 2021 04:35:59 -0700 (PDT) X-Gm-Message-State: AOAM530Y/nsDTjlhLmZLaOoH8ZdRikoGy7D39Dh9cXGAtMfnTmr5PYsl PyABDxPBJfNwTqaH3jA1d4ehXFq8PLL4f+tQwg8= X-Google-Smtp-Source: ABdhPJwL89MAz94d0LBxKuDkJqZz8BdoQK05FCU7uOspMiDDfVIZYNvXNETLBcZjCjirIS25cqz74I4n89sJnpdKuGY= X-Received: by 2002:a17:902:e28a:b029:12c:13e9:1166 with SMTP id o10-20020a170902e28ab029012c13e91166mr1178827plc.47.1627990558641; Tue, 03 Aug 2021 04:35:58 -0700 (PDT) MIME-Version: 1.0 References: <20210729140527.443116-1-masahiroy@kernel.org> <20210802124624.GG18685@arm.com> <20210803090626.GA30265@willie-the-truck> In-Reply-To: <20210803090626.GA30265@willie-the-truck> From: Masahiro Yamada Date: Tue, 3 Aug 2021 20:35:19 +0900 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [PATCH] arm64: move the (z)install rules to arch/arm64/Makefile To: Will Deacon Cc: Catalin Marinas , linux-arm-kernel , Linux Kernel Mailing List X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20210803_043623_005866_920A9734 X-CRM114-Status: GOOD ( 24.22 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Tue, Aug 3, 2021 at 6:06 PM Will Deacon wrote: > > On Tue, Aug 03, 2021 at 02:40:44PM +0900, Masahiro Yamada wrote: > > On Mon, Aug 2, 2021 at 9:46 PM Catalin Marinas wrote: > > > > > > On Thu, Jul 29, 2021 at 11:05:27PM +0900, Masahiro Yamada wrote: > > > > Currently, the (z)install targets in arch/arm64/Makefile descend into > > > > arch/arm64/boot/Makefile to invoke the shell script, but there is no > > > > good reason to do so. > > > > > > > > arch/arm64/Makefile can run the shell script directly. > > > > > > > > Signed-off-by: Masahiro Yamada > > > > --- > > > > > > > > arch/arm64/Makefile | 7 +++++-- > > > > arch/arm64/boot/Makefile | 8 -------- > > > > 2 files changed, 5 insertions(+), 10 deletions(-) > > > > > > Is this part of some cross-arch clean-up? I can see x86 for example does > > > the same thing. > > > > > > Thanks. > > > > > > > Yes. I want to do these cleanups tree-wide, but > > I sent patches per arch. > > > > Please pick it up to your arm64 tree > > if you do not mind. > > Just to confirm -- this would be for 5.15, right? > > Will Right. This is not a bug fix, but a clean-up. So, we can queue it for the next MW. -- Best Regards Masahiro Yamada _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel