mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-01 10:42:11 +00:00
block/blk-sysfs.c: replace strict_strtoul() with kstrtoul()
The usage of strict_strtoul() is not preferred, because strict_strtoul() is obsolete. Thus, kstrtoul() should be used. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
bb8e0e84b3
commit
ed751e683c
@ -29,7 +29,7 @@ queue_var_store(unsigned long *var, const char *page, size_t count)
|
|||||||
int err;
|
int err;
|
||||||
unsigned long v;
|
unsigned long v;
|
||||||
|
|
||||||
err = strict_strtoul(page, 10, &v);
|
err = kstrtoul(page, 10, &v);
|
||||||
if (err || v > UINT_MAX)
|
if (err || v > UINT_MAX)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user