提交 bb8e0e84 编写于 作者: J Jingoo Han 提交者: Linus Torvalds

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: NJingoo Han <jg1.han@samsung.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 e1403b8e
...@@ -598,7 +598,7 @@ static ssize_t class_osdblk_remove(struct class *c, ...@@ -598,7 +598,7 @@ static ssize_t class_osdblk_remove(struct class *c,
unsigned long ul; unsigned long ul;
struct list_head *tmp; struct list_head *tmp;
rc = strict_strtoul(buf, 10, &ul); rc = kstrtoul(buf, 10, &ul);
if (rc) if (rc)
return rc; return rc;
......
...@@ -5132,7 +5132,7 @@ static ssize_t rbd_remove(struct bus_type *bus, ...@@ -5132,7 +5132,7 @@ static ssize_t rbd_remove(struct bus_type *bus,
bool already = false; bool already = false;
int ret; int ret;
ret = strict_strtoul(buf, 10, &ul); ret = kstrtoul(buf, 10, &ul);
if (ret) if (ret)
return ret; return ret;
......
...@@ -620,7 +620,7 @@ static void backend_changed(struct xenbus_watch *watch, ...@@ -620,7 +620,7 @@ static void backend_changed(struct xenbus_watch *watch,
} }
/* Front end dir is a number, which is used as the handle. */ /* Front end dir is a number, which is used as the handle. */
err = strict_strtoul(strrchr(dev->otherend, '/') + 1, 0, &handle); err = kstrtoul(strrchr(dev->otherend, '/') + 1, 0, &handle);
if (err) if (err)
return; return;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册