Displaying 1 result from an estimated 1 matches for "cfi_default_stack".
2008 Oct 24
0
[PATCH] linux/x86-64: fix unwind annotations
...her testing.
Signed-off-by: Jan Beulich <jbeulich@novell.com>
--- head-2008-10-24.orig/arch/x86_64/kernel/entry-xen.S	2008-10-24 11:32:19.000000000 +0200
+++ head-2008-10-24/arch/x86_64/kernel/entry-xen.S	2008-10-24 11:33:13.000000000 +0200
@@ -121,9 +121,9 @@ NMI_MASK = 0x80000000
 	.macro	CFI_DEFAULT_STACK start=1,adj=0
 	.if \start
 	CFI_STARTPROC	simple
-	CFI_DEF_CFA	rsp,SS+8-(\adj*ARGOFFSET)
+	CFI_DEF_CFA	rsp,SS+8 - \adj*ARGOFFSET
 	.else
-	CFI_DEF_CFA_OFFSET SS+8-(\adj*ARGOFFSET)
+	CFI_DEF_CFA_OFFSET SS+8 - \adj*ARGOFFSET
 	.endif
 	.if \adj == 0
 	CFI_REL_OFFSET	r15,R15
@@ -133,20 +133,20 @@ NMI...