[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <65eb308e-6851-47b2-8fa8-31b093a0d25e@linaro.org>
Date: Wed, 15 Jan 2025 15:48:30 +0000
From: James Clark <james.clark@...aro.org>
To: Marc Zyngier <maz@...nel.org>
Cc: linux-arm-kernel@...ts.infradead.org, robh@...nel.org,
broonie@...nel.org, Catalin Marinas <catalin.marinas@....com>,
Will Deacon <will@...nel.org>, Mark Rutland <mark.rutland@....com>,
Oliver Upton <oliver.upton@...ux.dev>,
Anshuman Khandual <anshuman.khandual@....com>,
James Morse <james.morse@....com>, linux-kernel@...r.kernel.org
Subject: Re: [PATCH 2/5] arm64/sysreg: Enforce whole line match for closing
blocks
On 15/01/2025 2:17 pm, Marc Zyngier wrote:
> On Wed, 15 Jan 2025 13:42:54 +0000,
> James Clark <james.clark@...aro.org> wrote:
>>
>> Match on the whole line to prevent matching on prefixes like "Endsysreg"
>> vs "EndsysregFields". This could potentially make the script go wrong
>> in weird ways so make it fall through to the fatal unhandled statement
>> catcher if it doesn't fully match the current block.
>>
>> Signed-off-by: James Clark <james.clark@...aro.org>
>> ---
>> arch/arm64/tools/gen-sysreg.awk | 6 +++---
>> 1 file changed, 3 insertions(+), 3 deletions(-)
>>
>> diff --git a/arch/arm64/tools/gen-sysreg.awk b/arch/arm64/tools/gen-sysreg.awk
>> index 1a2afc9fdd42..7c7412adf90e 100755
>> --- a/arch/arm64/tools/gen-sysreg.awk
>> +++ b/arch/arm64/tools/gen-sysreg.awk
>> @@ -127,7 +127,7 @@ END {
>> next
>> }
>>
>> -/^EndSysregFields/ && block_current() == "SysregFields" {
>> +/^EndSysregFields$/ && block_current() == "SysregFields" {
>
> The problem with this sort of things is that it will now fail with
> trailing spaces, which is both counter-intuitive and pretty hard to
> spot.
>
> Why don't you simply match the field number, like you do in patch 3?
>
> M.
>
The intention was to ensure that the end tokens were the only thing on
the line (including whitespace). But yeah it is slightly inconsistent
compared to start tokens because as you mention "$1 ==" allows both
leading and trailing whitespace.
I'll change it to "$1 ==" for end tokens as well and then add
expect_fields(1) which catches unexpected trailing stuff but has a
better warning.
James
Powered by blists - more mailing lists