aboutsummaryrefslogtreecommitdiff
path: root/arch/hexagon/kernel/signal.c
diff options
context:
space:
mode:
authorOleg Nesterov <[email protected]>2012-05-11 10:59:08 +1000
committerAl Viro <[email protected]>2012-05-21 23:52:37 -0400
commit3334bf12480f10377e44d932baf53f34ec737f8b (patch)
treeb46c0b0a4bfd13a2ff9846a28d6f48a9fef9c94e /arch/hexagon/kernel/signal.c
parent54bbf3e3a9af5e3c439766fda444fb0673a1a721 (diff)
hexagon: do_notify_resume() needs tracehook_notify_resume()
arch/hexagon/kernel/signal.c:do_notify_resume() forgets to call tracehook_notify_resume() if TIF_NOTIFY_RESUME is set. Signed-off-by: Oleg Nesterov <[email protected]> Acked-by: Richard Kuo <[email protected]> Cc: David Howells <[email protected]> Cc: Thomas Gleixner <[email protected]> Cc: Linus Torvalds <[email protected]> Cc: Alexander Gordeev <[email protected]> Cc: Chris Zankel <[email protected]> Cc: David Smith <[email protected]> Cc: "Frank Ch. Eigler" <[email protected]> Cc: Geert Uytterhoeven <[email protected]> Cc: Larry Woodman <[email protected]> Cc: Peter Zijlstra <[email protected]> Cc: Tejun Heo <[email protected]> Cc: Ingo Molnar <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Al Viro <[email protected]>
Diffstat (limited to 'arch/hexagon/kernel/signal.c')
-rw-r--r--arch/hexagon/kernel/signal.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/hexagon/kernel/signal.c b/arch/hexagon/kernel/signal.c
index ecbab3457606..ab5f5ad12713 100644
--- a/arch/hexagon/kernel/signal.c
+++ b/arch/hexagon/kernel/signal.c
@@ -272,6 +272,7 @@ void do_notify_resume(struct pt_regs *regs, unsigned long thread_info_flags)
if (thread_info_flags & _TIF_NOTIFY_RESUME) {
clear_thread_flag(TIF_NOTIFY_RESUME);
+ tracehook_notify_resume(regs);
if (current->replacement_session_keyring)
key_replace_session_keyring();
}