From: Dave Reisner Date: Wed, 2 Jan 2013 13:54:37 +0000 (-0500) Subject: debugfs: convert gid= argument from decimal, not octal X-Git-Tag: v3.8~140^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f1688e0431d3a395388e70fe21da89ed0de0c323;p=platform%2Fkernel%2Flinux-amlogic.git debugfs: convert gid= argument from decimal, not octal This patch technically breaks userspace, but I suspect that anyone who actually used this flag would have encountered this brokenness, declared it lunacy, and already sent a patch. Signed-off-by: Dave Reisner Reviewed-by: Vasiliy Kulikov Acked-by: Kees Cook Signed-off-by: Greg Kroah-Hartman --- diff --git a/fs/debugfs/inode.c b/fs/debugfs/inode.c index 153bb1e..a5f12b7 100644 --- a/fs/debugfs/inode.c +++ b/fs/debugfs/inode.c @@ -176,7 +176,7 @@ static int debugfs_parse_options(char *data, struct debugfs_mount_opts *opts) opts->uid = uid; break; case Opt_gid: - if (match_octal(&args[0], &option)) + if (match_int(&args[0], &option)) return -EINVAL; gid = make_kgid(current_user_ns(), option); if (!gid_valid(gid))