public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] s390: fix _TIF_SINGLE_STEP definition
@ 2011-08-18 16:37 Tejun Heo
  2011-08-19  6:16 ` Martin Schwidefsky
  0 siblings, 1 reply; 2+ messages in thread
From: Tejun Heo @ 2011-08-18 16:37 UTC (permalink / raw)
  To: Martin Schwidefsky, Heiko Carstens; +Cc: linux-s390, linux-kernel

_TIF_SINGLE_STEP is incorrectly defined as 1<<TIF_FREEZE.  Fix it.

Signed-off-by: Tejun Heo <tj@kernel.org>
---
 arch/s390/include/asm/thread_info.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Index: work/arch/s390/include/asm/thread_info.h
===================================================================
--- work.orig/arch/s390/include/asm/thread_info.h
+++ work/arch/s390/include/asm/thread_info.h
@@ -117,7 +117,7 @@ static inline struct thread_info *curren
 #define _TIF_SIE		(1<<TIF_SIE)
 #define _TIF_POLLING_NRFLAG	(1<<TIF_POLLING_NRFLAG)
 #define _TIF_31BIT		(1<<TIF_31BIT)
-#define _TIF_SINGLE_STEP	(1<<TIF_FREEZE)
+#define _TIF_SINGLE_STEP	(1<<TIF_SINGLE_STEP)
 #define _TIF_FREEZE		(1<<TIF_FREEZE)
 
 #ifdef CONFIG_64BIT

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-08-19  6:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-18 16:37 [PATCH] s390: fix _TIF_SINGLE_STEP definition Tejun Heo
2011-08-19  6:16 ` Martin Schwidefsky

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox