diff options
author | Roland McGrath <roland@redhat.com> | 2005-09-11 04:44:45 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-12 10:52:16 -0400 |
commit | c3ff8ec31c1249d268cd11390649768a12bec1b9 (patch) | |
tree | b9c51b7fb24baca87ddedc2134a24808aa28e1bf /arch/i386/kernel/entry.S | |
parent | c93a777103263c2a610a49771c6336f7a53d8ab7 (diff) |
[PATCH] i386: Don't miss pending signals returning to user mode after signal processing
Signed-off-by: Roland McGrath <roland@redhat.com>
Acked-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Acked-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/i386/kernel/entry.S')
-rw-r--r-- | arch/i386/kernel/entry.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/i386/kernel/entry.S b/arch/i386/kernel/entry.S index 3aad03839660..9e24f7b207ee 100644 --- a/arch/i386/kernel/entry.S +++ b/arch/i386/kernel/entry.S | |||
@@ -319,7 +319,7 @@ work_notifysig: # deal with pending signals and | |||
319 | # vm86-space | 319 | # vm86-space |
320 | xorl %edx, %edx | 320 | xorl %edx, %edx |
321 | call do_notify_resume | 321 | call do_notify_resume |
322 | jmp restore_all | 322 | jmp resume_userspace |
323 | 323 | ||
324 | ALIGN | 324 | ALIGN |
325 | work_notifysig_v86: | 325 | work_notifysig_v86: |
@@ -329,7 +329,7 @@ work_notifysig_v86: | |||
329 | movl %eax, %esp | 329 | movl %eax, %esp |
330 | xorl %edx, %edx | 330 | xorl %edx, %edx |
331 | call do_notify_resume | 331 | call do_notify_resume |
332 | jmp restore_all | 332 | jmp resume_userspace |
333 | 333 | ||
334 | # perform syscall exit tracing | 334 | # perform syscall exit tracing |
335 | ALIGN | 335 | ALIGN |