mirror of https://gitee.com/openkylin/linux.git
[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>
This commit is contained in:
parent
c93a777103
commit
c3ff8ec31c
|
@ -319,7 +319,7 @@ work_notifysig: # deal with pending signals and
|
||||||
# vm86-space
|
# vm86-space
|
||||||
xorl %edx, %edx
|
xorl %edx, %edx
|
||||||
call do_notify_resume
|
call do_notify_resume
|
||||||
jmp restore_all
|
jmp resume_userspace
|
||||||
|
|
||||||
ALIGN
|
ALIGN
|
||||||
work_notifysig_v86:
|
work_notifysig_v86:
|
||||||
|
@ -329,7 +329,7 @@ work_notifysig_v86:
|
||||||
movl %eax, %esp
|
movl %eax, %esp
|
||||||
xorl %edx, %edx
|
xorl %edx, %edx
|
||||||
call do_notify_resume
|
call do_notify_resume
|
||||||
jmp restore_all
|
jmp resume_userspace
|
||||||
|
|
||||||
# perform syscall exit tracing
|
# perform syscall exit tracing
|
||||||
ALIGN
|
ALIGN
|
||||||
|
|
Loading…
Reference in New Issue