[<prev] [next>] [day] [month] [year] [list]
Message-ID: <1700307.8D3KhEYTno@daeseok-laptop.cloud.net>
Date: Mon, 24 Feb 2014 20:20:16 +0900
From: Daeseok Youn <daeseok.youn@...il.com>
To: viro@...iv.linux.org.uk
Cc: linux-fsdevel@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] dcache: replace obsolete simple_strtoul() with kstrtoul()
Signed-off-by: Daeseok Youn <daeseok.youn@...il.com>
---
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
---
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists