[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20251105-entry-fix-ifndef-v1-1-d8d28045b627@linux.ibm.com>
Date: Wed, 05 Nov 2025 14:40:32 +1100
From: Andrew Donnellan <ajd@...ux.ibm.com>
To: Thomas Gleixner <tglx@...utronix.de>,
Peter Zijlstra <peterz@...radead.org>,
Andy Lutomirski <luto@...nel.org>
Cc: linux-kernel@...r.kernel.org, kvm@...r.kernel.org,
Nicholas Miehlbradt <nicholas@...ux.ibm.com>,
Heiko Carstens <hca@...ux.ibm.com>,
Christian Borntraeger <borntraeger@...ux.ibm.com>,
Andrew Donnellan <ajd@...ux.ibm.com>
Subject: [PATCH] entry: Fix ifndef around
arch_xfer_to_guest_mode_handle_work() stub
The stub implementation of arch_xfer_to_guest_mode_handle_work() is
guarded by an #ifndef that incorrectly checks for the name
arch_xfer_to_guest_mode_work instead. It seems the function was renamed
to add "_handle" as a late change to the original patch, and the #ifndef
wasn't updated to go with it.
Change the #ifndef to match the name of the function. No users right now,
so no need to update the arch code.
Fixes: 935ace2fb5cc4 ("entry: Provide infrastructure for work before transitioning to guest mode")
Signed-off-by: Andrew Donnellan <ajd@...ux.ibm.com>
---
include/linux/entry-virt.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/linux/entry-virt.h b/include/linux/entry-virt.h
index 42c89e3e5ca7ac9ed90706ced5b688d909ab5f3c..bfa767702d9a691bdca599ff5a573e124a99457a 100644
--- a/include/linux/entry-virt.h
+++ b/include/linux/entry-virt.h
@@ -32,7 +32,7 @@
*/
static inline int arch_xfer_to_guest_mode_handle_work(unsigned long ti_work);
-#ifndef arch_xfer_to_guest_mode_work
+#ifndef arch_xfer_to_guest_mode_handle_work
static inline int arch_xfer_to_guest_mode_handle_work(unsigned long ti_work)
{
return 0;
---
base-commit: 284922f4c563aa3a8558a00f2a05722133237fe8
change-id: 20251105-entry-fix-ifndef-95417070c5f5
--
Andrew Donnellan OzLabs, ADL Canberra
ajd@...ux.ibm.com IBM Australia Limited
Powered by blists - more mailing lists