Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1730842 > unrolled thread

Re: [PATCH 7/8] x86/xen: Add unwind hint annotations

Started byJiri Slaby <jslaby@suse.cz>
First post2017-09-12 15:00 +0200
Last post2017-09-12 17:40 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: [PATCH 7/8] x86/xen: Add unwind hint annotations Jiri Slaby <jslaby@suse.cz> - 2017-09-12 15:00 +0200
    Re: [PATCH 7/8] x86/xen: Add unwind hint annotations Josh Poimboeuf <jpoimboe@redhat.com> - 2017-09-12 17:40 +0200

#1730842 — Re: [PATCH 7/8] x86/xen: Add unwind hint annotations

FromJiri Slaby <jslaby@suse.cz>
Date2017-09-12 15:00 +0200
SubjectRe: [PATCH 7/8] x86/xen: Add unwind hint annotations
Message-ID<uoSXf-1pc-1@gated-at.bofh.it>
On 08/31/2017, 10:23 PM, Josh Poimboeuf wrote:
> Add unwind hint annotations to the xen head code so the ORC unwinder can
> read head_64.o.

xen-head.S is included also in head_32.S, so we see:
arch/x86/kernel/../../x86/xen/xen-head.S:47: Error: no such instruction:
`unwind_hint_empty'
scripts/Makefile.build:413: recipe for target
'arch/x86/kernel/head_32.o' failed

To fix this, I use:

--- a/arch/x86/kernel/head_32.S
+++ b/arch/x86/kernel/head_32.S
@@ -25,6 +25,7 @@
 #include <asm/bootparam.h>
 #include <asm/export.h>
 #include <asm/pgtable_32.h>
+#include "../entry/calling.h"

 /* Physical address */
 #define pa(X) ((X) - __PAGE_OFFSET)


> hypercall_page needs empty annotations at 32-byte intervals to match the
> 'xen_hypercall_*' ELF functions at those locations.
> 
> Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com>
> ---
>  arch/x86/xen/xen-head.S | 6 +++++-
>  1 file changed, 5 insertions(+), 1 deletion(-)
> 
> diff --git a/arch/x86/xen/xen-head.S b/arch/x86/xen/xen-head.S
> index 9753225289e8..8f9741cbb32f 100644
> --- a/arch/x86/xen/xen-head.S
> +++ b/arch/x86/xen/xen-head.S
> @@ -19,6 +19,7 @@
>  #ifdef CONFIG_XEN_PV
>  	__INIT
>  ENTRY(startup_xen)
> +	UNWIND_HINT_EMPTY
>  	cld
>  
>  	/* Clear .bss */
> @@ -40,7 +41,10 @@ END(startup_xen)
>  .pushsection .text
>  	.balign PAGE_SIZE
>  ENTRY(hypercall_page)
> -	.skip PAGE_SIZE
> +	.rept (PAGE_SIZE / 32)
> +		UNWIND_HINT_EMPTY
> +		.skip 32
> +	.endr
>  
>  #define HYPERCALL(n) \
>  	.equ xen_hypercall_##n, hypercall_page + __HYPERVISOR_##n * 32; \
> 


-- 
js
suse labs

[toc] | [next] | [standalone]


#1730943

FromJosh Poimboeuf <jpoimboe@redhat.com>
Date2017-09-12 17:40 +0200
Message-ID<uoVs6-34g-9@gated-at.bofh.it>
In reply to#1730842
On Tue, Sep 12, 2017 at 02:56:52PM +0200, Jiri Slaby wrote:
> On 08/31/2017, 10:23 PM, Josh Poimboeuf wrote:
> > Add unwind hint annotations to the xen head code so the ORC unwinder can
> > read head_64.o.
> 
> xen-head.S is included also in head_32.S, so we see:
> arch/x86/kernel/../../x86/xen/xen-head.S:47: Error: no such instruction:
> `unwind_hint_empty'
> scripts/Makefile.build:413: recipe for target
> 'arch/x86/kernel/head_32.o' failed
> 
> To fix this, I use:
> 
> --- a/arch/x86/kernel/head_32.S
> +++ b/arch/x86/kernel/head_32.S
> @@ -25,6 +25,7 @@
>  #include <asm/bootparam.h>
>  #include <asm/export.h>
>  #include <asm/pgtable_32.h>
> +#include "../entry/calling.h"
> 
>  /* Physical address */
>  #define pa(X) ((X) - __PAGE_OFFSET)

Thanks.  0-day reported this as well.  Will fix this in v2.

-- 
Josh

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web