tracehook: unexport ptrace_notify
The ptrace_notify() function should not be called by any modules. It was only ever exported to be called by binfmt exec functions. But that is no longer necessary since fs/exec.c deals with that generically now. There should be no calls to ptrace_notify() from outside the core kernel. Signed-off-by: Roland McGrath <roland@redhat.com> Cc: Oleg Nesterov <oleg@tv-sign.ru> Reviewed-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
6341c393fc
commit
ff1188646c
|
@ -1895,7 +1895,6 @@ EXPORT_SYMBOL(recalc_sigpending);
|
||||||
EXPORT_SYMBOL_GPL(dequeue_signal);
|
EXPORT_SYMBOL_GPL(dequeue_signal);
|
||||||
EXPORT_SYMBOL(flush_signals);
|
EXPORT_SYMBOL(flush_signals);
|
||||||
EXPORT_SYMBOL(force_sig);
|
EXPORT_SYMBOL(force_sig);
|
||||||
EXPORT_SYMBOL(ptrace_notify);
|
|
||||||
EXPORT_SYMBOL(send_sig);
|
EXPORT_SYMBOL(send_sig);
|
||||||
EXPORT_SYMBOL(send_sig_info);
|
EXPORT_SYMBOL(send_sig_info);
|
||||||
EXPORT_SYMBOL(sigprocmask);
|
EXPORT_SYMBOL(sigprocmask);
|
||||||
|
|
Loading…
Reference in New Issue