diff mbox

[V9fs-developer,1/3] fs/9p: remove obsolete simple_strto<foo>

Message ID 1358501956-31493-1-git-send-email-abhi.c.pawar@gmail.com (mailing list archive)
State New, archived
Headers show

Commit Message

Abhijit Pawar Jan. 18, 2013, 9:39 a.m. UTC
This patch replace the obsolete simple_strto<foo> with kstrto<foo>.

Signed-off-by: Abhijit Pawar <abhi.c.pawar@gmail.com>
---
 fs/9p/v9fs.c |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)
diff mbox

Patch

diff --git a/fs/9p/v9fs.c b/fs/9p/v9fs.c
index d934f04..6ac48fc 100644
--- a/fs/9p/v9fs.c
+++ b/fs/9p/v9fs.c
@@ -112,7 +112,7 @@  static int v9fs_parse_options(struct v9fs_session_info *v9ses, char *opts)
 	substring_t args[MAX_OPT_ARGS];
 	char *p;
 	int option = 0;
-	char *s, *e;
+	char *s;
 	int ret = 0;
 
 	/* setup defaults */
@@ -249,9 +249,8 @@  static int v9fs_parse_options(struct v9fs_session_info *v9ses, char *opts)
 				v9ses->flags |= V9FS_ACCESS_CLIENT;
 			} else {
 				v9ses->flags |= V9FS_ACCESS_SINGLE;
-				v9ses->uid = simple_strtoul(s, &e, 10);
-				if (*e != '\0') {
-					ret = -EINVAL;
+				ret = kstrtouint(s, 10, &v9ses->uid);
+				if (ret) {
 					pr_info("Unknown access argument %s\n",
 						s);
 					kfree(s);