We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 605e71c commit d0e9f4cCopy full SHA for d0e9f4c
tools/include/uapi/linux/kvm.h
@@ -676,6 +676,13 @@ struct kvm_ioeventfd {
676
__u8 pad[36];
677
};
678
679
+#define KVM_X86_DISABLE_EXITS_MWAIT (1 << 0)
680
+#define KVM_X86_DISABLE_EXITS_HTL (1 << 1)
681
+#define KVM_X86_DISABLE_EXITS_PAUSE (1 << 2)
682
+#define KVM_X86_DISABLE_VALID_EXITS (KVM_X86_DISABLE_EXITS_MWAIT | \
683
+ KVM_X86_DISABLE_EXITS_HTL | \
684
+ KVM_X86_DISABLE_EXITS_PAUSE)
685
+
686
/* for KVM_ENABLE_CAP */
687
struct kvm_enable_cap {
688
/* in */
0 commit comments