aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-generic/kvm_para.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-generic/kvm_para.h')
-rw-r--r--include/asm-generic/kvm_para.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/asm-generic/kvm_para.h b/include/asm-generic/kvm_para.h
new file mode 100644
index 000000000000..05ef7e705939
--- /dev/null
+++ b/include/asm-generic/kvm_para.h
@@ -0,0 +1,14 @@
+#ifndef _ASM_GENERIC_KVM_PARA_H
+#define _ASM_GENERIC_KVM_PARA_H
+
+
+/*
+ * This function is used by architectures that support kvm to avoid issuing
+ * false soft lockup messages.
+ */
+static inline bool kvm_check_and_clear_guest_paused(void)
+{
+ return false;
+}
+
+#endif