diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-09-11 17:20:07 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-09-11 18:56:56 -0400 |
commit | bb8e0e84b30afc9827931c9773d75d5c99fcddff (patch) | |
tree | 1d1b6b4135933cc375570f6016d8295299c916f6 /drivers/block/rbd.c | |
parent | e1403b8edf669ff49bbdf602cc97fefa2760cb15 (diff) |
block: replace strict_strtoul() with kstrtoul()
The use 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>
Diffstat (limited to 'drivers/block/rbd.c')
-rw-r--r-- | drivers/block/rbd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/rbd.c b/drivers/block/rbd.c index 39c51cc7fabc..b22a7d0fe5b7 100644 --- a/drivers/block/rbd.c +++ b/drivers/block/rbd.c | |||
@@ -5132,7 +5132,7 @@ static ssize_t rbd_remove(struct bus_type *bus, | |||
5132 | bool already = false; | 5132 | bool already = false; |
5133 | int ret; | 5133 | int ret; |
5134 | 5134 | ||
5135 | ret = strict_strtoul(buf, 10, &ul); | 5135 | ret = kstrtoul(buf, 10, &ul); |
5136 | if (ret) | 5136 | if (ret) |
5137 | return ret; | 5137 | return ret; |
5138 | 5138 | ||