From: Linus Torvalds Date: Wed, 2 Jan 2008 21:48:27 +0000 (-0800) Subject: Fix kernel/ptrace.c compile problem (missing "may_attach()") X-Git-Tag: v2.6.24-rc7~15 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b8c9a18712f7b617fda66d878ce3759c9e575ba0;p=linux-2.6 Fix kernel/ptrace.c compile problem (missing "may_attach()") The previous commit missed one use of "may_attach()" that had been renamed to __ptrace_may_attach(). Tssk, tssk, Al. Signed-off-by: Linus Torvalds --- diff --git a/kernel/ptrace.c b/kernel/ptrace.c index 0c65d306f4..c25db86308 100644 --- a/kernel/ptrace.c +++ b/kernel/ptrace.c @@ -196,7 +196,7 @@ repeat: /* the same process cannot be attached many times */ if (task->ptrace & PT_PTRACED) goto bad; - retval = may_attach(task); + retval = __ptrace_may_attach(task); if (retval) goto bad;