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


Groups > linux.kernel > #1734611 > unrolled thread

[PATCH v2 4/8] x86/head: Fix head ELF function 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 4/8] x86/head: Fix head ELF function annotations Josh Poimboeuf <jpoimboe@redhat.com> - 2017-09-19 04:50 +0200

#1734611 — [PATCH v2 4/8] x86/head: Fix head ELF function annotations

FromJosh Poimboeuf <jpoimboe@redhat.com>
Date2017-09-19 04:50 +0200
Subject[PATCH v2 4/8] x86/head: Fix head ELF function annotations
Message-ID<urgLL-6I2-9@gated-at.bofh.it>
These functions aren't callable C-type functions, so don't annotate them
as such.

Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com>
---
 arch/x86/kernel/head_64.S | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/x86/kernel/head_64.S b/arch/x86/kernel/head_64.S
index afb0a1e22d41..edacd579d504 100644
--- a/arch/x86/kernel/head_64.S
+++ b/arch/x86/kernel/head_64.S
@@ -234,7 +234,7 @@ ENTRY(secondary_startup_64)
 	pushq	%rax		# target address in negative space
 	lretq
 .Lafter_lret:
-ENDPROC(secondary_startup_64)
+END(secondary_startup_64)
 
 #include "verify_cpu.S"
 
@@ -277,7 +277,7 @@ ENTRY(early_idt_handler_array)
 	i = i + 1
 	.fill early_idt_handler_array + i*EARLY_IDT_HANDLER_SIZE - ., 1, 0xcc
 	.endr
-ENDPROC(early_idt_handler_array)
+END(early_idt_handler_array)
 
 early_idt_handler_common:
 	/*
@@ -320,7 +320,7 @@ early_idt_handler_common:
 20:
 	decl early_recursion_flag(%rip)
 	jmp restore_regs_and_iret
-ENDPROC(early_idt_handler_common)
+END(early_idt_handler_common)
 
 	__INITDATA
 
-- 
2.13.5

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web