* [PATCH] s390/spinlock: Replace simple_strtoul with kstrtouint in spin_retry_setup
@ 2025-12-13 12:32 Thorsten Blum
2025-12-18 7:59 ` Alexander Gordeev
0 siblings, 1 reply; 3+ messages in thread
From: Thorsten Blum @ 2025-12-13 12:32 UTC (permalink / raw)
To: Heiko Carstens, Vasily Gorbik, Alexander Gordeev,
Christian Borntraeger, Sven Schnelle, joel granados,
Juergen Christ
Cc: Thorsten Blum, linux-s390, linux-kernel
Replace simple_strtoul() with the recommended kstrtouint() for parsing
the 'spin_retry=' boot parameter. Unlike simple_strtoul(), which returns
an unsigned long, kstrtouint() converts the string directly to an
unsigned integer.
Check the return value of kstrtouint() and reject invalid values. This
adds error handling while preserving existing behavior for valid values,
and removes use of the deprecated simple_strtoul() helper.
Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
---
arch/s390/lib/spinlock.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/arch/s390/lib/spinlock.c b/arch/s390/lib/spinlock.c
index 10db1e56a811..b4ca53356b96 100644
--- a/arch/s390/lib/spinlock.c
+++ b/arch/s390/lib/spinlock.c
@@ -34,8 +34,7 @@ early_initcall(spin_retry_init);
*/
static int __init spin_retry_setup(char *str)
{
- spin_retry = simple_strtoul(str, &str, 0);
- return 1;
+ return kstrtouint(str, 0, &spin_retry) == 0;
}
__setup("spin_retry=", spin_retry_setup);
--
Thorsten Blum <thorsten.blum@linux.dev>
GPG: 1D60 735E 8AEF 3BE4 73B6 9D84 7336 78FD 8DFE EAD4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] s390/spinlock: Replace simple_strtoul with kstrtouint in spin_retry_setup
2025-12-13 12:32 [PATCH] s390/spinlock: Replace simple_strtoul with kstrtouint in spin_retry_setup Thorsten Blum
@ 2025-12-18 7:59 ` Alexander Gordeev
2025-12-18 10:17 ` Thorsten Blum
0 siblings, 1 reply; 3+ messages in thread
From: Alexander Gordeev @ 2025-12-18 7:59 UTC (permalink / raw)
To: Thorsten Blum
Cc: Heiko Carstens, Vasily Gorbik, Christian Borntraeger,
Sven Schnelle, joel granados, Juergen Christ, linux-s390,
linux-kernel
On Sat, Dec 13, 2025 at 01:32:44PM +0100, Thorsten Blum wrote:
> Replace simple_strtoul() with the recommended kstrtouint() for parsing
> the 'spin_retry=' boot parameter. Unlike simple_strtoul(), which returns
> an unsigned long, kstrtouint() converts the string directly to an
> unsigned integer.
>
> Check the return value of kstrtouint() and reject invalid values. This
> adds error handling while preserving existing behavior for valid values,
> and removes use of the deprecated simple_strtoul() helper.
>
> Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
> ---
> arch/s390/lib/spinlock.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/arch/s390/lib/spinlock.c b/arch/s390/lib/spinlock.c
> index 10db1e56a811..b4ca53356b96 100644
> --- a/arch/s390/lib/spinlock.c
> +++ b/arch/s390/lib/spinlock.c
> @@ -34,8 +34,7 @@ early_initcall(spin_retry_init);
> */
> static int __init spin_retry_setup(char *str)
> {
> - spin_retry = simple_strtoul(str, &str, 0);
> - return 1;
> + return kstrtouint(str, 0, &spin_retry) == 0;
Why not to use kstrtouint() return value, like other parameters do?
> }
> __setup("spin_retry=", spin_retry_setup);
>
> --
> Thorsten Blum <thorsten.blum@linux.dev>
Thanks!
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] s390/spinlock: Replace simple_strtoul with kstrtouint in spin_retry_setup
2025-12-18 7:59 ` Alexander Gordeev
@ 2025-12-18 10:17 ` Thorsten Blum
0 siblings, 0 replies; 3+ messages in thread
From: Thorsten Blum @ 2025-12-18 10:17 UTC (permalink / raw)
To: Alexander Gordeev
Cc: Heiko Carstens, Vasily Gorbik, Christian Borntraeger,
Sven Schnelle, joel granados, Juergen Christ, linux-s390,
linux-kernel
On 18. Dec 2025, at 08:59, Alexander Gordeev wrote:
> On Sat, Dec 13, 2025 at 01:32:44PM +0100, Thorsten Blum wrote:
>> Replace simple_strtoul() with the recommended kstrtouint() for parsing
>> the 'spin_retry=' boot parameter. Unlike simple_strtoul(), which returns
>> an unsigned long, kstrtouint() converts the string directly to an
>> unsigned integer.
>>
>> Check the return value of kstrtouint() and reject invalid values. This
>> adds error handling while preserving existing behavior for valid values,
>> and removes use of the deprecated simple_strtoul() helper.
>>
>> Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
>> ---
>> arch/s390/lib/spinlock.c | 3 +--
>> 1 file changed, 1 insertion(+), 2 deletions(-)
>>
>> diff --git a/arch/s390/lib/spinlock.c b/arch/s390/lib/spinlock.c
>> index 10db1e56a811..b4ca53356b96 100644
>> --- a/arch/s390/lib/spinlock.c
>> +++ b/arch/s390/lib/spinlock.c
>> @@ -34,8 +34,7 @@ early_initcall(spin_retry_init);
>> */
>> static int __init spin_retry_setup(char *str)
>> {
>> - spin_retry = simple_strtoul(str, &str, 0);
>> - return 1;
>> + return kstrtouint(str, 0, &spin_retry) == 0;
>
> Why not to use kstrtouint() return value, like other parameters do?
Returning kstrtouint() directly would be wrong because kstrtouint()
returns 0 on success, but spin_retry_setup() is expected to return 1 on
success and 0 if the parameter couldn't be handled.
Thanks,
Thorsten
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-12-18 10:17 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-13 12:32 [PATCH] s390/spinlock: Replace simple_strtoul with kstrtouint in spin_retry_setup Thorsten Blum
2025-12-18 7:59 ` Alexander Gordeev
2025-12-18 10:17 ` Thorsten Blum
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox