diff options
Diffstat (limited to 'security/selinux/hooks.c')
| -rw-r--r-- | security/selinux/hooks.c | 7 | 
1 files changed, 4 insertions, 3 deletions
diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c index 5c9f25ba1c9..e3ce6b4127c 100644 --- a/security/selinux/hooks.c +++ b/security/selinux/hooks.c @@ -3371,16 +3371,17 @@ static int selinux_task_getioprio(struct task_struct *p)  	return current_has_perm(p, PROCESS__GETSCHED);  } -static int selinux_task_setrlimit(unsigned int resource, struct rlimit *new_rlim) +static int selinux_task_setrlimit(struct task_struct *p, unsigned int resource, +		struct rlimit *new_rlim)  { -	struct rlimit *old_rlim = current->signal->rlim + resource; +	struct rlimit *old_rlim = p->signal->rlim + resource;  	/* Control the ability to change the hard limit (whether  	   lowering or raising it), so that the hard limit can  	   later be used as a safe reset point for the soft limit  	   upon context transitions.  See selinux_bprm_committing_creds. */  	if (old_rlim->rlim_max != new_rlim->rlim_max) -		return current_has_perm(current, PROCESS__SETRLIMIT); +		return current_has_perm(p, PROCESS__SETRLIMIT);  	return 0;  }  |