The patch titled Subject: parse_integer: convert fs/9p/ has been removed from the -mm tree. Its filename was parse_integer-convert-fs-9p.patch This patch was dropped because it was nacked ------------------------------------------------------ From: Alexey Dobriyan <adobriyan@xxxxxxxxx> Subject: parse_integer: convert fs/9p/ Convert deprecated simple_strtoul() usage. Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> Cc: Eric Van Hensbergen <ericvh@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/9p/v9fs.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff -puN fs/9p/v9fs.c~parse_integer-convert-fs-9p fs/9p/v9fs.c --- a/fs/9p/v9fs.c~parse_integer-convert-fs-9p +++ a/fs/9p/v9fs.c @@ -116,7 +116,7 @@ static int v9fs_parse_options(struct v9f substring_t args[MAX_OPT_ARGS]; char *p; int option = 0; - char *s, *e; + char *s; int ret = 0; /* setup defaults */ @@ -269,8 +269,10 @@ static int v9fs_parse_options(struct v9f } else { uid_t uid; v9ses->flags |= V9FS_ACCESS_SINGLE; - uid = simple_strtoul(s, &e, 10); - if (*e != '\0') { + ret = parse_integer(s, 10, &uid); + if (ret < 0) + return ret; + if (s[ret] != '\0') { ret = -EINVAL; pr_info("Unknown access argument %s\n", s); _ Patches currently in -mm which might be from adobriyan@xxxxxxxxx are kstrto-accept-0-for-signed-conversion.patch parse_integer-convert-fs-exofs.patch proc-convert-to-kstrto-kstrto_from_user.patch sound-convert-to-parse_integer.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html