[PATCH] i386: fix singlestepping though a syscall

Do not mask TIF_SINGLESTEP bit in _TIF_WORK_MASK. Masking this stopped
do_notify_resume() from being called when it should have been.

Signed-off-by: Chuck Ebbert <76306.1226@compuserve.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by Chuck Ebbert and committed by Linus Torvalds cfe91f9c d3086439

+2 -2
+2 -2
include/asm-i386/thread_info.h
··· 158 158 159 159 /* work to do on interrupt/exception return */ 160 160 #define _TIF_WORK_MASK \ 161 - (0x0000FFFF & ~(_TIF_SYSCALL_TRACE|_TIF_SYSCALL_AUDIT|_TIF_SINGLESTEP|\ 162 - _TIF_SECCOMP|_TIF_SYSCALL_EMU)) 161 + (0x0000FFFF & ~(_TIF_SYSCALL_TRACE | _TIF_SYSCALL_AUDIT | \ 162 + _TIF_SECCOMP | _TIF_SYSCALL_EMU)) 163 163 /* work to do on any return to u-space */ 164 164 #define _TIF_ALLWORK_MASK (0x0000FFFF & ~_TIF_SECCOMP) 165 165