* [PATCH] riscv: cpufeature: use bitmap_equal() instead of memcmp()
@ 2025-02-10 15:56 Clément Léger
2025-02-11 7:41 ` Alexandre Ghiti
2025-02-13 18:30 ` patchwork-bot+linux-riscv
0 siblings, 2 replies; 4+ messages in thread
From: Clément Léger @ 2025-02-10 15:56 UTC (permalink / raw)
To: Paul Walmsley, Palmer Dabbelt, open list:RISC-V ARCHITECTURE,
open list
Cc: Clément Léger, Conor Dooley, Alexandre Ghiti
Comparison of bitmaps should be done using bitmap_equal(), not memcmp(),
use the former one to compare isa bitmaps.
Signed-off-by: Clément Léger <cleger@rivosinc.com>
---
arch/riscv/kernel/cpufeature.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/riscv/kernel/cpufeature.c b/arch/riscv/kernel/cpufeature.c
index c6ba750536c3..40ac72e407b6 100644
--- a/arch/riscv/kernel/cpufeature.c
+++ b/arch/riscv/kernel/cpufeature.c
@@ -479,7 +479,7 @@ static void __init riscv_resolve_isa(unsigned long *source_isa,
if (bit < RISCV_ISA_EXT_BASE)
*this_hwcap |= isa2hwcap[bit];
}
- } while (loop && memcmp(prev_resolved_isa, resolved_isa, sizeof(prev_resolved_isa)));
+ } while (loop && !bitmap_equal(prev_resolved_isa, resolved_isa, RISCV_ISA_EXT_MAX));
}
static void __init match_isa_ext(const char *name, const char *name_end, unsigned long *bitmap)
--
2.47.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] riscv: cpufeature: use bitmap_equal() instead of memcmp()
2025-02-10 15:56 [PATCH] riscv: cpufeature: use bitmap_equal() instead of memcmp() Clément Léger
@ 2025-02-11 7:41 ` Alexandre Ghiti
2025-02-11 8:15 ` Clément Léger
2025-02-13 18:30 ` patchwork-bot+linux-riscv
1 sibling, 1 reply; 4+ messages in thread
From: Alexandre Ghiti @ 2025-02-11 7:41 UTC (permalink / raw)
To: Clément Léger, Paul Walmsley, Palmer Dabbelt,
open list:RISC-V ARCHITECTURE, open list
Cc: Conor Dooley, Alexandre Ghiti
Hi Clément,
On 10/02/2025 16:56, Clément Léger wrote:
> Comparison of bitmaps should be done using bitmap_equal(), not memcmp(),
> use the former one to compare isa bitmaps.
>
> Signed-off-by: Clément Léger <cleger@rivosinc.com>
> ---
> arch/riscv/kernel/cpufeature.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/riscv/kernel/cpufeature.c b/arch/riscv/kernel/cpufeature.c
> index c6ba750536c3..40ac72e407b6 100644
> --- a/arch/riscv/kernel/cpufeature.c
> +++ b/arch/riscv/kernel/cpufeature.c
> @@ -479,7 +479,7 @@ static void __init riscv_resolve_isa(unsigned long *source_isa,
> if (bit < RISCV_ISA_EXT_BASE)
> *this_hwcap |= isa2hwcap[bit];
> }
> - } while (loop && memcmp(prev_resolved_isa, resolved_isa, sizeof(prev_resolved_isa)));
> + } while (loop && !bitmap_equal(prev_resolved_isa, resolved_isa, RISCV_ISA_EXT_MAX));
> }
>
> static void __init match_isa_ext(const char *name, const char *name_end, unsigned long *bitmap)
Since bitmap does not guarantee the value of the 'extra' bits
(https://elixir.bootlin.com/linux/v6.13.1/source/lib/bitmap.c#L24), this
is a fix so I would add a Fixes tag:
Fixes: 625034abd52a8c ("riscv: add ISA extensions validation callback")
You can also add:
Reviewed-by: Alexandre Ghiti <alexghiti@rivosinc.com>
Thanks,
Alex
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] riscv: cpufeature: use bitmap_equal() instead of memcmp()
2025-02-11 7:41 ` Alexandre Ghiti
@ 2025-02-11 8:15 ` Clément Léger
0 siblings, 0 replies; 4+ messages in thread
From: Clément Léger @ 2025-02-11 8:15 UTC (permalink / raw)
To: Alexandre Ghiti, Paul Walmsley, Palmer Dabbelt,
open list:RISC-V ARCHITECTURE, open list
Cc: Conor Dooley, Alexandre Ghiti
On 11/02/2025 08:41, Alexandre Ghiti wrote:
> Hi Clément,
>
> On 10/02/2025 16:56, Clément Léger wrote:
>> Comparison of bitmaps should be done using bitmap_equal(), not memcmp(),
>> use the former one to compare isa bitmaps.
>>
>> Signed-off-by: Clément Léger <cleger@rivosinc.com>
>> ---
>> arch/riscv/kernel/cpufeature.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/arch/riscv/kernel/cpufeature.c b/arch/riscv/kernel/
>> cpufeature.c
>> index c6ba750536c3..40ac72e407b6 100644
>> --- a/arch/riscv/kernel/cpufeature.c
>> +++ b/arch/riscv/kernel/cpufeature.c
>> @@ -479,7 +479,7 @@ static void __init riscv_resolve_isa(unsigned long
>> *source_isa,
>> if (bit < RISCV_ISA_EXT_BASE)
>> *this_hwcap |= isa2hwcap[bit];
>> }
>> - } while (loop && memcmp(prev_resolved_isa, resolved_isa,
>> sizeof(prev_resolved_isa)));
>> + } while (loop && !bitmap_equal(prev_resolved_isa, resolved_isa,
>> RISCV_ISA_EXT_MAX));
>> }
>> static void __init match_isa_ext(const char *name, const char
>> *name_end, unsigned long *bitmap)
>
>
> Since bitmap does not guarantee the value of the 'extra' bits (https://
> elixir.bootlin.com/linux/v6.13.1/source/lib/bitmap.c#L24), this is a fix
> so I would add a Fixes tag:
>
> Fixes: 625034abd52a8c ("riscv: add ISA extensions validation callback")
Yeah, I wasn't sure since it does not fix anything per se. We aligned
the ISA size to a multiple of 64 (128) so we actually do not have any
extra undefined bits. But I agree that it's better to track it correctly
as a fix.
That makes me think that we could actually size RISCV_ISA_EXT_MAX to be
exactly the number of ISA extensions we support rather than a larger
arbitrary value.
>
> You can also add:
>
> Reviewed-by: Alexandre Ghiti <alexghiti@rivosinc.com>
Thanks !
Clément
>
> Thanks,
>
> Alex
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] riscv: cpufeature: use bitmap_equal() instead of memcmp()
2025-02-10 15:56 [PATCH] riscv: cpufeature: use bitmap_equal() instead of memcmp() Clément Léger
2025-02-11 7:41 ` Alexandre Ghiti
@ 2025-02-13 18:30 ` patchwork-bot+linux-riscv
1 sibling, 0 replies; 4+ messages in thread
From: patchwork-bot+linux-riscv @ 2025-02-13 18:30 UTC (permalink / raw)
To: =?utf-8?b?Q2zDqW1lbnQgTMOpZ2VyIDxjbGVnZXJAcml2b3NpbmMuY29tPg==?=
Cc: linux-riscv, paul.walmsley, palmer, linux-kernel, conor,
alexghiti
Hello:
This patch was applied to riscv/linux.git (fixes)
by Palmer Dabbelt <palmer@rivosinc.com>:
On Mon, 10 Feb 2025 16:56:14 +0100 you wrote:
> Comparison of bitmaps should be done using bitmap_equal(), not memcmp(),
> use the former one to compare isa bitmaps.
>
> Signed-off-by: Clément Léger <cleger@rivosinc.com>
> ---
> arch/riscv/kernel/cpufeature.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Here is the summary with links:
- riscv: cpufeature: use bitmap_equal() instead of memcmp()
https://git.kernel.org/riscv/c/1508ead3d229
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-02-13 18:30 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-10 15:56 [PATCH] riscv: cpufeature: use bitmap_equal() instead of memcmp() Clément Léger
2025-02-11 7:41 ` Alexandre Ghiti
2025-02-11 8:15 ` Clément Léger
2025-02-13 18:30 ` patchwork-bot+linux-riscv
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox