aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/include/asm/kvm_guest.h
diff options
context:
space:
mode:
authorSrikar Dronamraju <srikar@linux.vnet.ibm.com>2020-12-02 10:34:55 +0530
committerMichael Ellerman <mpe@ellerman.id.au>2020-12-04 01:01:22 +1100
commita21d1becaa3f17a97b933ffa677b526afc514ec5 (patch)
treede21858ceb451f68dfc3a3120f7ab8fa862d1585 /arch/powerpc/include/asm/kvm_guest.h
parentpowerpc: Rename is_kvm_guest() to check_kvm_guest() (diff)
downloadlinux-dev-a21d1becaa3f17a97b933ffa677b526afc514ec5.tar.xz
linux-dev-a21d1becaa3f17a97b933ffa677b526afc514ec5.zip
powerpc: Reintroduce is_kvm_guest() as a fast-path check
Introduce a static branch that would be set during boot if the OS happens to be a KVM guest. Subsequent checks to see if we are on KVM will rely on this static branch. This static branch would be used in vcpu_is_preempted() in a subsequent patch. Signed-off-by: Srikar Dronamraju <srikar@linux.vnet.ibm.com> Acked-by: Waiman Long <longman@redhat.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/20201202050456.164005-4-srikar@linux.vnet.ibm.com
Diffstat (limited to 'arch/powerpc/include/asm/kvm_guest.h')
-rw-r--r--arch/powerpc/include/asm/kvm_guest.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/kvm_guest.h b/arch/powerpc/include/asm/kvm_guest.h
index d7749ecb30d4..2fca299f7e19 100644
--- a/arch/powerpc/include/asm/kvm_guest.h
+++ b/arch/powerpc/include/asm/kvm_guest.h
@@ -7,8 +7,18 @@
#define _ASM_POWERPC_KVM_GUEST_H_
#if defined(CONFIG_PPC_PSERIES) || defined(CONFIG_KVM_GUEST)
+#include <linux/jump_label.h>
+
+DECLARE_STATIC_KEY_FALSE(kvm_guest);
+
+static inline bool is_kvm_guest(void)
+{
+ return static_branch_unlikely(&kvm_guest);
+}
+
bool check_kvm_guest(void);
#else
+static inline bool is_kvm_guest(void) { return false; }
static inline bool check_kvm_guest(void) { return false; }
#endif