diff options
Diffstat (limited to 'arch/cris/kernel/ptrace.c')
| -rw-r--r-- | arch/cris/kernel/ptrace.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/cris/kernel/ptrace.c b/arch/cris/kernel/ptrace.c index b326023baab2..48b0f3912632 100644 --- a/arch/cris/kernel/ptrace.c +++ b/arch/cris/kernel/ptrace.c | |||
| @@ -16,6 +16,7 @@ | |||
| 16 | #include <linux/errno.h> | 16 | #include <linux/errno.h> |
| 17 | #include <linux/ptrace.h> | 17 | #include <linux/ptrace.h> |
| 18 | #include <linux/user.h> | 18 | #include <linux/user.h> |
| 19 | #include <linux/tracehook.h> | ||
| 19 | 20 | ||
| 20 | #include <asm/uaccess.h> | 21 | #include <asm/uaccess.h> |
| 21 | #include <asm/page.h> | 22 | #include <asm/page.h> |
| @@ -36,4 +37,11 @@ void do_notify_resume(int canrestart, struct pt_regs *regs, | |||
| 36 | /* deal with pending signal delivery */ | 37 | /* deal with pending signal delivery */ |
| 37 | if (thread_info_flags & _TIF_SIGPENDING) | 38 | if (thread_info_flags & _TIF_SIGPENDING) |
| 38 | do_signal(canrestart,regs); | 39 | do_signal(canrestart,regs); |
| 40 | |||
| 41 | if (thread_info_flags & _TIF_NOTIFY_RESUME) { | ||
| 42 | clear_thread_flag(TIF_NOTIFY_RESUME); | ||
| 43 | tracehook_notify_resume(regs); | ||
| 44 | if (current->replacement_session_keyring) | ||
| 45 | key_replace_session_keyring(); | ||
| 46 | } | ||
| 39 | } | 47 | } |
