[RFC PATCH v6.10 2/4] x86/xen/pvh: Move startup code into .ref.text

From: Ard Biesheuvel
Date: Thu Mar 07 2024 - 09:31:39 EST


From: Ard Biesheuvel <ardb@xxxxxxxxxx>

The Xen PVH startup code does not need to live in .head.text, given that
its entry point is not at a fixed offset, and is communicated to the
host/VMM via an ELF note.

So move it out of .head.text into another code section. To avoid
spurious warnings about references to .init code, move it into .ref.text
rather than .text. (Note that the ELF note itself is not .init and so
moving this code into .init.text would result in warnings as well)

Signed-off-by: Ard Biesheuvel <ardb@xxxxxxxxxx>
---
arch/x86/platform/pvh/head.S | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/platform/pvh/head.S b/arch/x86/platform/pvh/head.S
index f7235ef87bc3..0cf6008e834b 100644
--- a/arch/x86/platform/pvh/head.S
+++ b/arch/x86/platform/pvh/head.S
@@ -20,7 +20,7 @@
#include <asm/nospec-branch.h>
#include <xen/interface/elfnote.h>

- __HEAD
+ __REF

/*
* Entry point for PVH guests.
--
2.44.0.278.ge034bb2e1d-goog