Skip to content

Commit

Permalink
x86/boot: Introduce boot-helpers.h
Browse files Browse the repository at this point in the history
Eclair complains that neither reloc_trampoline{32,64}() can see their
declarations.

reloc_trampoline32() needs to become asmlinkage, while reloc_trampoline64()
needs declaring properly in a way that both efi-boot.h and reloc-trampoline.c
can see.

Introduce boot-helpers.h for the purpose.

Signed-off-by: Andrew Cooper <[email protected]>
Reviewed-by: Jan Beulich <[email protected]>
  • Loading branch information
andyhhp committed Nov 19, 2024
1 parent 429840a commit a1ed107
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
4 changes: 3 additions & 1 deletion xen/arch/x86/boot/reloc-trampoline.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@

#include <xen/compiler.h>
#include <xen/stdint.h>

#include <asm/boot-helpers.h>
#include <asm/trampoline.h>

extern const int32_t __trampoline_rel_start[], __trampoline_rel_stop[];
extern const int32_t __trampoline_seg_start[], __trampoline_seg_stop[];

#if defined(__i386__)
void reloc_trampoline32(void)
void asmlinkage reloc_trampoline32(void)
#elif defined (__x86_64__)
void reloc_trampoline64(void)
#else
Expand Down
4 changes: 2 additions & 2 deletions xen/arch/x86/efi/efi-boot.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
* therefore can define arch specific global variables.
*/
#include <xen/vga.h>

#include <asm/boot-helpers.h>
#include <asm/e820.h>
#include <asm/edd.h>
#include <asm/microcode.h>
Expand Down Expand Up @@ -103,8 +105,6 @@ static void __init efi_arch_relocate_image(unsigned long delta)
}
}

void reloc_trampoline64(void);

static void __init relocate_trampoline(unsigned long phys)
{
trampoline_phys = phys;
Expand Down
13 changes: 13 additions & 0 deletions xen/arch/x86/include/asm/boot-helpers.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Declarations for helper functions compiled for both 32bit and 64bit.
*
* The 32bit forms are only used from assembly, so no declarations are
* provided.
*/
#ifndef X86_BOOT_HELPERS_H
#define X86_BOOT_HELPERS_H

void reloc_trampoline64(void);

#endif /* X86_BOOT_HELPERS_H */

0 comments on commit a1ed107

Please sign in to comment.