Re: [PATCH v3 0/4] kstrtox: introduce memparse_safe()

From: Qu Wenruo
Date: Sat Jan 06 2024 - 16:00:44 EST




On 2024/1/7 01:04, Andy Shevchenko wrote:
On Thu, Jan 04, 2024 at 09:57:47AM +1030, Qu Wenruo wrote:
[CHANGELOG]
v3:
- Fix the 32bit pointer pattern in the test case
The old pointer pattern for 32 bit systems is in fact 40 bits,
which would still lead to sparse warning.
The newer pattern is using UINTPTR_MAX to trim the pattern, then
converted to a pointer, which should not cause any trimmed bits and
make sparse happy.

Having test cases is quite good, thanks!
But as I understood what Alexey wanted, is not using the kstrtox files for this.
You can introduce it in the cmdline.c, correct? Just include local "kstrtox.h".

Not really possible, all the needed parsing helpers are internal inside
kstrtox.c.

Furthermore, this also means memparse() can not be enhanced due to:

- Lack of ways to return errors

- Unable to call the parsing helpers inside cmdline.c

Thanks,
Qu


I'm on leave till end of the month, I'll look at this later.