aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/thread_info.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/include/asm/thread_info.h')
-rw-r--r--arch/x86/include/asm/thread_info.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/include/asm/thread_info.h b/arch/x86/include/asm/thread_info.h
index 224285b674ca..ea2dbe82cba3 100644
--- a/arch/x86/include/asm/thread_info.h
+++ b/arch/x86/include/asm/thread_info.h
@@ -222,7 +222,7 @@ static inline unsigned long current_stack_pointer(void)
222 * currently at exactly SIZEOF_PTREGS bytes away from the top of the 222 * currently at exactly SIZEOF_PTREGS bytes away from the top of the
223 * stack: 223 * stack:
224 * 224 *
225 * mov THREAD_INFO(TI_flags, %rsp, SIZEOF_PTREGS), %eax 225 * mov ASM_THREAD_INFO(TI_flags, %rsp, SIZEOF_PTREGS), %eax
226 * 226 *
227 * will translate to: 227 * will translate to:
228 * 228 *
@@ -230,7 +230,7 @@ static inline unsigned long current_stack_pointer(void)
230 * 230 *
231 * which is below the current RSP by almost 16K. 231 * which is below the current RSP by almost 16K.
232 */ 232 */
233#define THREAD_INFO(field, reg, off) ((field)+(off)-THREAD_SIZE)(reg) 233#define ASM_THREAD_INFO(field, reg, off) ((field)+(off)-THREAD_SIZE)(reg)
234 234
235#endif 235#endif
236 236