diff options
author | Oleg Nesterov <oleg@tv-sign.ru> | 2008-04-30 03:52:38 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-30 11:29:34 -0400 |
commit | d6cf723a142f63ccb92272bc0e9bfffd3c3a5cac (patch) | |
tree | 16ec6665ebb03107d40f5ab0884ca7e8394b5358 /kernel | |
parent | 1406f2d321bae5ac5ff729dcb773336d9c05ec74 (diff) |
k_getrusage: don't take rcu_read_lock()
Just a trivial example, more to come.
k_getrusage() holds rcu_read_lock() because it was previously required by
lock_task_sighand(). Unneeded now.
Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru>
Cc: "Eric W. Biederman" <ebiederm@xmission.com>
Cc: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Cc: Roland McGrath <roland@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/sys.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/kernel/sys.c b/kernel/sys.c index e423d0d9e6ff..47c30a20b554 100644 --- a/kernel/sys.c +++ b/kernel/sys.c | |||
@@ -1572,11 +1572,8 @@ static void k_getrusage(struct task_struct *p, int who, struct rusage *r) | |||
1572 | goto out; | 1572 | goto out; |
1573 | } | 1573 | } |
1574 | 1574 | ||
1575 | rcu_read_lock(); | 1575 | if (!lock_task_sighand(p, &flags)) |
1576 | if (!lock_task_sighand(p, &flags)) { | ||
1577 | rcu_read_unlock(); | ||
1578 | return; | 1576 | return; |
1579 | } | ||
1580 | 1577 | ||
1581 | switch (who) { | 1578 | switch (who) { |
1582 | case RUSAGE_BOTH: | 1579 | case RUSAGE_BOTH: |
@@ -1612,9 +1609,7 @@ static void k_getrusage(struct task_struct *p, int who, struct rusage *r) | |||
1612 | default: | 1609 | default: |
1613 | BUG(); | 1610 | BUG(); |
1614 | } | 1611 | } |
1615 | |||
1616 | unlock_task_sighand(p, &flags); | 1612 | unlock_task_sighand(p, &flags); |
1617 | rcu_read_unlock(); | ||
1618 | 1613 | ||
1619 | out: | 1614 | out: |
1620 | cputime_to_timeval(utime, &r->ru_utime); | 1615 | cputime_to_timeval(utime, &r->ru_utime); |