From mboxrd@z Thu Jan 1 00:00:00 1970 From: akpm@linux-foundation.org Date: Tue, 05 Feb 2008 07:43:04 +0000 Subject: [patch 4/4] ia64: fix ptrace inside a namespace Message-Id: <200802050742.m157gjIG010223@imap1.linux-foundation.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-ia64@vger.kernel.org From: Pavel Emelyanov The ia64 has its own sys_ptrace implementation and it was overlooked when the pid namespaces patches were sent. Use find_task_by_vpid() in it. Signed-off-by: Pavel Emelyanov Cc: "Eric W. Biederman" Cc: "Luck, Tony" Signed-off-by: Andrew Morton --- arch/ia64/kernel/ptrace.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/ia64/kernel/ptrace.c~ia64-fix-ptrace-inside-a-namespace arch/ia64/kernel/ptrace.c --- a/arch/ia64/kernel/ptrace.c~ia64-fix-ptrace-inside-a-namespace +++ a/arch/ia64/kernel/ptrace.c @@ -1437,7 +1437,7 @@ sys_ptrace (long request, pid_t pid, uns ret = -ESRCH; read_lock(&tasklist_lock); { - child = find_task_by_pid(pid); + child = find_task_by_vpid(pid); if (child) { if (peek_or_poke) child = find_thread_for_addr(child, addr); _