2014-02-24 11:20:23

by Daeseok Youn

[permalink] [raw]
Subject: [PATCH] dcache: replace obsolete simple_strtoul() with kstrtoul()


Signed-off-by: Daeseok Youn <[email protected]>
---
fs/dcache.c | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/fs/dcache.c b/fs/dcache.c
index 265e0ce..f360620 100644
--- a/fs/dcache.c
+++ b/fs/dcache.c
@@ -3345,10 +3345,9 @@ EXPORT_SYMBOL(d_tmpfile);
static __initdata unsigned long dhash_entries;
static int __init set_dhash_entries(char *str)
{
- if (!str)
- return 0;
- dhash_entries = simple_strtoul(str, &str, 0);
- return 1;
+ if (str && !kstrtoul(str, 0, &dhash_entries))
+ return 1;
+ return 0;
}
__setup("dhash_entries=", set_dhash_entries);

--
1.7.9.5

---