From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from relay1.mentorg.com ([192.94.38.131]:61319 "EHLO relay1.mentorg.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728681AbfFCOeW (ORCPT ); Mon, 3 Jun 2019 10:34:22 -0400 Date: Mon, 3 Jun 2019 10:34:17 -0400 From: "George G. Davis" Subject: Re: [RFC][PATCH] Makefile: Fix checkstack.pl arm64 wrong or unknown architecture Message-ID: <20190603143416.GA17299@mam-gdavis-lt> References: <1559316388-19565-1-git-send-email-george_davis@mentor.com> <20190531163908.GB10644@mam-gdavis-lt> <20190531174506.GC10644@mam-gdavis-lt> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline In-Reply-To: Sender: linux-kbuild-owner@vger.kernel.org List-ID: To: Masahiro Yamada Cc: Andy Whitcroft , Joe Perches , Catalin Marinas , Will Deacon , linux-arm-kernel , Michal Marek , Linux Kbuild mailing list , open list Hello Masahiro, On Sat, Jun 01, 2019 at 11:09:15AM +0900, Masahiro Yamada wrote: > On Sat, Jun 1, 2019 at 2:45 AM George G. Davis wrote: > > > Following this pattern, does this work for you? > > > > > > diff --git a/scripts/checkstack.pl b/scripts/checkstack.pl > > > index 122aef5e4e14..371bd17a4983 100755 > > > --- a/scripts/checkstack.pl > > > +++ b/scripts/checkstack.pl > > > @@ -46,7 +46,7 @@ my (@stack, $re, $dre, $x, $xs, $funcre); > > > $x = "[0-9a-f]"; # hex character > > > $xs = "[0-9a-f ]"; # hex character or space > > > $funcre = qr/^$x* <(.*)>:$/; > > > - if ($arch eq 'aarch64') { > > > + if ($arch =~ '^(aarch|arm)64$') { > > > > Yes, that works, thanks! > > > > Will you submit a fix or would you like me to resubmit with the above suggested > > fix? > > Please send v2. Done: https://patchwork.kernel.org/patch/10972965/ Thanks! > > Thanks. > > -- > Best Regards > Masahiro Yamada -- Regards, George