[PATCH] entry: KVM: Change override for arch_xfer_to_guest_mode_handle_work()

From: Christian Ludwig
Date: Wed Jun 01 2022 - 17:32:39 EST


Change the way arch_xfer_to_guest_mode_handle_work() can be overridden
by architecture code. Use the function name as the preprocessor define.
This is better greppable. And it resembles the way many other overrides
are constructed in the tree.

Note that none of this matters at the moment. There is no architecture
overriding this function. This change is purely cosmetic.

Signed-off-by: Christian Ludwig <chrissicool@xxxxxxxxx>
---
include/linux/entry-kvm.h | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/include/linux/entry-kvm.h b/include/linux/entry-kvm.h
index 6813171afccb..2d2ba13b3e75 100644
--- a/include/linux/entry-kvm.h
+++ b/include/linux/entry-kvm.h
@@ -31,15 +31,13 @@ struct kvm_vcpu;
* Invoked from xfer_to_guest_mode_handle_work(). Defaults to NOOP. Can be
* replaced by architecture specific code.
*/
-static inline int arch_xfer_to_guest_mode_handle_work(struct kvm_vcpu *vcpu,
- 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(struct kvm_vcpu *vcpu,
unsigned long ti_work)
{
return 0;
}
+#define arch_xfer_to_guest_mode_handle_work arch_xfer_to_guest_mode_handle_work
#endif

/**
--
2.35.1