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


Groups > linux.kernel > #1734610 > unrolled thread

[PATCH v2 6/8] x86/xen: Fix xen head ELF annotations

Started byJosh Poimboeuf <jpoimboe@redhat.com>
First post2017-09-19 04:50 +0200
Last post2017-09-19 04:50 +0200
Articles 1 — 1 participant

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

  [PATCH v2 6/8] x86/xen: Fix xen head ELF annotations Josh Poimboeuf <jpoimboe@redhat.com> - 2017-09-19 04:50 +0200

#1734610 — [PATCH v2 6/8] x86/xen: Fix xen head ELF annotations

FromJosh Poimboeuf <jpoimboe@redhat.com>
Date2017-09-19 04:50 +0200
Subject[PATCH v2 6/8] x86/xen: Fix xen head ELF annotations
Message-ID<urgLL-6I2-7@gated-at.bofh.it>
Mark the ends of the startup_xen and hypercall_page code sections.

Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com>
---
 arch/x86/xen/xen-head.S | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/x86/xen/xen-head.S b/arch/x86/xen/xen-head.S
index a7525e95d53f..9753225289e8 100644
--- a/arch/x86/xen/xen-head.S
+++ b/arch/x86/xen/xen-head.S
@@ -33,7 +33,7 @@ ENTRY(startup_xen)
 	mov $init_thread_union+THREAD_SIZE, %_ASM_SP
 
 	jmp xen_start_kernel
-
+END(startup_xen)
 	__FINIT
 #endif
 
@@ -47,7 +47,7 @@ ENTRY(hypercall_page)
 	.type xen_hypercall_##n, @function; .size xen_hypercall_##n, 32
 #include <asm/xen-hypercalls.h>
 #undef HYPERCALL
-
+END(hypercall_page)
 .popsection
 
 	ELFNOTE(Xen, XEN_ELFNOTE_GUEST_OS,       .asciz "linux")
-- 
2.13.5

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web