diff options
author | Jiri Slaby <jirislaby@gmail.com> | 2009-08-28 08:05:12 -0400 |
---|---|---|
committer | Jiri Slaby <jirislaby@gmail.com> | 2010-07-16 03:48:45 -0400 |
commit | 5ab46b345e418747b3a52f0892680c0745c4223c (patch) | |
tree | d7453221b7fc2764a7405b48b73b4ac7bf7a317a /kernel/sys.c | |
parent | 8fd00b4d7014b00448eb33cf0590815304769798 (diff) |
rlimits: add task_struct to update_rlimit_cpu
Add task_struct as a parameter to update_rlimit_cpu to be able to set
rlimit_cpu of different task than current.
Signed-off-by: Jiri Slaby <jirislaby@gmail.com>
Acked-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'kernel/sys.c')
-rw-r--r-- | kernel/sys.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/sys.c b/kernel/sys.c index 1ba4522689d4..f5183b08adfc 100644 --- a/kernel/sys.c +++ b/kernel/sys.c | |||
@@ -1320,7 +1320,7 @@ SYSCALL_DEFINE2(setrlimit, unsigned int, resource, struct rlimit __user *, rlim) | |||
1320 | if (new_rlim.rlim_cur == RLIM_INFINITY) | 1320 | if (new_rlim.rlim_cur == RLIM_INFINITY) |
1321 | goto out; | 1321 | goto out; |
1322 | 1322 | ||
1323 | update_rlimit_cpu(new_rlim.rlim_cur); | 1323 | update_rlimit_cpu(current, new_rlim.rlim_cur); |
1324 | out: | 1324 | out: |
1325 | return 0; | 1325 | return 0; |
1326 | } | 1326 | } |