mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] entry: KVM: Change override for arch_xfer_to_guest_mode_handle_work()
@ 2022-06-01 21:32 Christian Ludwig
  0 siblings, 0 replies; only message in thread
From: Christian Ludwig @ 2022-06-01 21:32 UTC (permalink / raw)
  To: linux-kernel, Thomas Gleixner, Peter Zijlstra, Andy Lutomirski

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@gmail.com>
---
 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


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-06-01 21:32 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-01 21:32 [PATCH] entry: KVM: Change override for arch_xfer_to_guest_mode_handle_work() Christian Ludwig

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®