diff options
Diffstat (limited to 'fs/proc/root.c')
| -rw-r--r-- | fs/proc/root.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/proc/root.c b/fs/proc/root.c index eed44bfc85d..7c30fce037c 100644 --- a/fs/proc/root.c +++ b/fs/proc/root.c @@ -67,7 +67,7 @@ static int proc_parse_options(char *options, struct pid_namespace *pid)  		case Opt_gid:  			if (match_int(&args[0], &option))  				return 0; -			pid->pid_gid = option; +			pid->pid_gid = make_kgid(current_user_ns(), option);  			break;  		case Opt_hidepid:  			if (match_int(&args[0], &option))  |