* [PATCH] Improve Kconfig help for RISCV_ISA_V_PREEMPTIVE
@ 2025-05-01 13:03 mikisabate
2025-05-06 8:33 ` Alexandre Ghiti
2025-06-02 22:12 ` patchwork-bot+linux-riscv
0 siblings, 2 replies; 4+ messages in thread
From: mikisabate @ 2025-05-01 13:03 UTC (permalink / raw)
To: paul.walmsley, palmer, alex, linux-riscv, linux-kernel
Cc: Miquel Sabaté Solà
From: Miquel Sabaté Solà <mikisabate@gmail.com>
Fix a couple of spelling issues plus some minor details on the grammar.
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
---
arch/riscv/Kconfig | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/arch/riscv/Kconfig b/arch/riscv/Kconfig
index 1fd197afd2f7..3f40e33bc115 100644
--- a/arch/riscv/Kconfig
+++ b/arch/riscv/Kconfig
@@ -664,12 +664,12 @@ config RISCV_ISA_V_PREEMPTIVE
default y
help
Usually, in-kernel SIMD routines are run with preemption disabled.
- Functions which envoke long running SIMD thus must yield core's
+ Functions which invoke long running SIMD thus must yield the core's
vector unit to prevent blocking other tasks for too long.
- This config allows kernel to run SIMD without explicitly disable
- preemption. Enabling this config will result in higher memory
- consumption due to the allocation of per-task's kernel Vector context.
+ This config allows the kernel to run SIMD without explicitly disabling
+ preemption. Enabling this config will result in higher memory consumption
+ due to the allocation of per-task's kernel Vector context.
config RISCV_ISA_ZAWRS
bool "Zawrs extension support for more efficient busy waiting"
--
2.49.0
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] Improve Kconfig help for RISCV_ISA_V_PREEMPTIVE
2025-05-01 13:03 [PATCH] Improve Kconfig help for RISCV_ISA_V_PREEMPTIVE mikisabate
@ 2025-05-06 8:33 ` Alexandre Ghiti
2025-05-06 8:39 ` Miquel Sabaté Solà
2025-06-02 22:12 ` patchwork-bot+linux-riscv
1 sibling, 1 reply; 4+ messages in thread
From: Alexandre Ghiti @ 2025-05-06 8:33 UTC (permalink / raw)
To: mikisabate, paul.walmsley, palmer, linux-riscv, linux-kernel
Hi Miquel,
Your patch title should be prefixed with "riscv" or "RISC-V", but no
need to resend, I'll fix it when I merge your patch.
On 01/05/2025 15:03, mikisabate@gmail.com wrote:
> From: Miquel Sabaté Solà <mikisabate@gmail.com>
>
> Fix a couple of spelling issues plus some minor details on the grammar.
>
> Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
> ---
> arch/riscv/Kconfig | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/arch/riscv/Kconfig b/arch/riscv/Kconfig
> index 1fd197afd2f7..3f40e33bc115 100644
> --- a/arch/riscv/Kconfig
> +++ b/arch/riscv/Kconfig
> @@ -664,12 +664,12 @@ config RISCV_ISA_V_PREEMPTIVE
> default y
> help
> Usually, in-kernel SIMD routines are run with preemption disabled.
> - Functions which envoke long running SIMD thus must yield core's
> + Functions which invoke long running SIMD thus must yield the core's
> vector unit to prevent blocking other tasks for too long.
>
> - This config allows kernel to run SIMD without explicitly disable
> - preemption. Enabling this config will result in higher memory
> - consumption due to the allocation of per-task's kernel Vector context.
> + This config allows the kernel to run SIMD without explicitly disabling
> + preemption. Enabling this config will result in higher memory consumption
> + due to the allocation of per-task's kernel Vector context.
>
> config RISCV_ISA_ZAWRS
> bool "Zawrs extension support for more efficient busy waiting"
Reviewed-by: Alexandre Ghiti <alexghiti@rivosinc.com>
Thanks,
Alex
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] Improve Kconfig help for RISCV_ISA_V_PREEMPTIVE
2025-05-06 8:33 ` Alexandre Ghiti
@ 2025-05-06 8:39 ` Miquel Sabaté Solà
0 siblings, 0 replies; 4+ messages in thread
From: Miquel Sabaté Solà @ 2025-05-06 8:39 UTC (permalink / raw)
To: Alexandre Ghiti; +Cc: paul.walmsley, palmer, linux-riscv, linux-kernel
[-- Attachment #1.1: Type: text/plain, Size: 1786 bytes --]
On dt., de maig 06 2025, Alexandre Ghiti wrote:
> Hi Miquel,
>
> Your patch title should be prefixed with "riscv" or "RISC-V", but no need to
> resend, I'll fix it when I merge your patch.
Yikes! I'll keep this in mind next time. Thanks!
>
> On 01/05/2025 15:03, mikisabate@gmail.com wrote:
>> From: Miquel Sabaté Solà <mikisabate@gmail.com>
>>
>> Fix a couple of spelling issues plus some minor details on the grammar.
>>
>> Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
>> ---
>> arch/riscv/Kconfig | 8 ++++----
>> 1 file changed, 4 insertions(+), 4 deletions(-)
>>
>> diff --git a/arch/riscv/Kconfig b/arch/riscv/Kconfig
>> index 1fd197afd2f7..3f40e33bc115 100644
>> --- a/arch/riscv/Kconfig
>> +++ b/arch/riscv/Kconfig
>> @@ -664,12 +664,12 @@ config RISCV_ISA_V_PREEMPTIVE
>> default y
>> help
>> Usually, in-kernel SIMD routines are run with preemption disabled.
>> - Functions which envoke long running SIMD thus must yield core's
>> + Functions which invoke long running SIMD thus must yield the core's
>> vector unit to prevent blocking other tasks for too long.
>> - This config allows kernel to run SIMD without explicitly disable
>> - preemption. Enabling this config will result in higher memory
>> - consumption due to the allocation of per-task's kernel Vector context.
>> + This config allows the kernel to run SIMD without explicitly disabling
>> + preemption. Enabling this config will result in higher memory consumption
>> + due to the allocation of per-task's kernel Vector context.
>> config RISCV_ISA_ZAWRS
>> bool "Zawrs extension support for more efficient busy waiting"
>
>
> Reviewed-by: Alexandre Ghiti <alexghiti@rivosinc.com>
>
> Thanks,
>
> Alex
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]
[-- Attachment #2: Type: text/plain, Size: 161 bytes --]
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] Improve Kconfig help for RISCV_ISA_V_PREEMPTIVE
2025-05-01 13:03 [PATCH] Improve Kconfig help for RISCV_ISA_V_PREEMPTIVE mikisabate
2025-05-06 8:33 ` Alexandre Ghiti
@ 2025-06-02 22:12 ` patchwork-bot+linux-riscv
1 sibling, 0 replies; 4+ messages in thread
From: patchwork-bot+linux-riscv @ 2025-06-02 22:12 UTC (permalink / raw)
To: =?utf-8?q?Miquel_Sabat=C3=A9_Sol=C3=A0_=3Cmikisabate=40gmail=2Ecom=3E?=
Cc: linux-riscv, paul.walmsley, palmer, alex, linux-kernel
Hello:
This patch was applied to riscv/linux.git (for-next)
by Palmer Dabbelt <palmer@dabbelt.com>:
On Thu, 1 May 2025 15:03:09 +0200 you wrote:
> From: Miquel Sabaté Solà <mikisabate@gmail.com>
>
> Fix a couple of spelling issues plus some minor details on the grammar.
>
> Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
> ---
> arch/riscv/Kconfig | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
Here is the summary with links:
- Improve Kconfig help for RISCV_ISA_V_PREEMPTIVE
https://git.kernel.org/riscv/c/0ee3002d66c9
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-06-03 0:28 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-01 13:03 [PATCH] Improve Kconfig help for RISCV_ISA_V_PREEMPTIVE mikisabate
2025-05-06 8:33 ` Alexandre Ghiti
2025-05-06 8:39 ` Miquel Sabaté Solà
2025-06-02 22:12 ` 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