diff options
author | Jiri Slaby <jirislaby@gmail.com> | 2009-08-26 12:41:16 -0400 |
---|---|---|
committer | Jiri Slaby <jirislaby@gmail.com> | 2010-07-16 03:48:45 -0400 |
commit | 8fd00b4d7014b00448eb33cf0590815304769798 (patch) | |
tree | f97cc5b4401dd038e539dae7ad66066383012866 /security/security.c | |
parent | 2f7989efd4398d92b8adffce2e07dd043a0895fe (diff) |
rlimits: security, add task_struct to setrlimit
Add task_struct to task_setrlimit of security_operations to be able to set
rlimit of task other than current.
Signed-off-by: Jiri Slaby <jirislaby@gmail.com>
Acked-by: Eric Paris <eparis@redhat.com>
Acked-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'security/security.c')
-rw-r--r-- | security/security.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/security/security.c b/security/security.c index 351942a4ca0e..aa510609a955 100644 --- a/security/security.c +++ b/security/security.c | |||
@@ -769,9 +769,10 @@ int security_task_getioprio(struct task_struct *p) | |||
769 | return security_ops->task_getioprio(p); | 769 | return security_ops->task_getioprio(p); |
770 | } | 770 | } |
771 | 771 | ||
772 | int security_task_setrlimit(unsigned int resource, struct rlimit *new_rlim) | 772 | int security_task_setrlimit(struct task_struct *p, unsigned int resource, |
773 | struct rlimit *new_rlim) | ||
773 | { | 774 | { |
774 | return security_ops->task_setrlimit(resource, new_rlim); | 775 | return security_ops->task_setrlimit(p, resource, new_rlim); |
775 | } | 776 | } |
776 | 777 | ||
777 | int security_task_setscheduler(struct task_struct *p, | 778 | int security_task_setscheduler(struct task_struct *p, |