diff options
author | Oleg Nesterov <oleg@tv-sign.ru> | 2006-09-29 05:00:55 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-09-29 12:18:18 -0400 |
commit | aaa2a97eb9c0e91d7abc66bf76811a9599fdb3ee (patch) | |
tree | 90d45393fe0116e53412f8f8afa4e8b538177832 /kernel/futex.c | |
parent | d359b549bf3d7f42f0084918a4816ea4572e507c (diff) |
[PATCH] sys_get_robust_list(): don't take tasklist_lock
use rcu locks for find_task_by_pid().
Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel/futex.c')
-rw-r--r-- | kernel/futex.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/futex.c b/kernel/futex.c index ca8ef11feb65..4b6770e9806d 100644 --- a/kernel/futex.c +++ b/kernel/futex.c | |||
@@ -1624,7 +1624,7 @@ sys_get_robust_list(int pid, struct robust_list_head __user **head_ptr, | |||
1624 | struct task_struct *p; | 1624 | struct task_struct *p; |
1625 | 1625 | ||
1626 | ret = -ESRCH; | 1626 | ret = -ESRCH; |
1627 | read_lock(&tasklist_lock); | 1627 | rcu_read_lock(); |
1628 | p = find_task_by_pid(pid); | 1628 | p = find_task_by_pid(pid); |
1629 | if (!p) | 1629 | if (!p) |
1630 | goto err_unlock; | 1630 | goto err_unlock; |
@@ -1633,7 +1633,7 @@ sys_get_robust_list(int pid, struct robust_list_head __user **head_ptr, | |||
1633 | !capable(CAP_SYS_PTRACE)) | 1633 | !capable(CAP_SYS_PTRACE)) |
1634 | goto err_unlock; | 1634 | goto err_unlock; |
1635 | head = p->robust_list; | 1635 | head = p->robust_list; |
1636 | read_unlock(&tasklist_lock); | 1636 | rcu_read_unlock(); |
1637 | } | 1637 | } |
1638 | 1638 | ||
1639 | if (put_user(sizeof(*head), len_ptr)) | 1639 | if (put_user(sizeof(*head), len_ptr)) |
@@ -1641,7 +1641,7 @@ sys_get_robust_list(int pid, struct robust_list_head __user **head_ptr, | |||
1641 | return put_user(head, head_ptr); | 1641 | return put_user(head, head_ptr); |
1642 | 1642 | ||
1643 | err_unlock: | 1643 | err_unlock: |
1644 | read_unlock(&tasklist_lock); | 1644 | rcu_read_unlock(); |
1645 | 1645 | ||
1646 | return ret; | 1646 | return ret; |
1647 | } | 1647 | } |