projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
75a1c61
)
[S390] fix _TIF_SINGLE_STEP definition
author
Tejun Heo
<tj@kernel.org>
Sun, 30 Oct 2011 14:16:35 +0000
(15:16 +0100)
committer
Martin Schwidefsky
<schwidefsky@de.ibm.com>
Sun, 30 Oct 2011 14:16:41 +0000
(15:16 +0100)
_TIF_SINGLE_STEP is incorrectly defined as 1<<TIF_FREEZE. Fix it.
Signed-off-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
arch/s390/include/asm/thread_info.h
patch
|
blob
|
blame
|
history
diff --git
a/arch/s390/include/asm/thread_info.h
b/arch/s390/include/asm/thread_info.h
index 1a5dbb6f1495468c4c16dfc4695f4aaa10aa9698..f9a9a10979c9bfe59838fd9904f647d529d4da1a 100644
(file)
--- a/
arch/s390/include/asm/thread_info.h
+++ b/
arch/s390/include/asm/thread_info.h
@@
-117,7
+117,7
@@
static inline struct thread_info *current_thread_info(void)
#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