79c4324644
Change-Id: I2d302dda68298877c65c99147f5bf22186a59aac
66 lines
2.0 KiB
Diff
66 lines
2.0 KiB
Diff
From d6398243714a7a775c64e74dbd63c00863cb7e83 Mon Sep 17 00:00:00 2001
|
|
From: Paolo Bonzini <pbonzini@redhat.com>
|
|
Date: Tue, 22 Feb 2022 17:58:11 +0100
|
|
Subject: [PATCH 01/10] linux-headers: include missing changes from 5.17
|
|
|
|
mainline inclusion
|
|
from mainline-v7.0.0-rc0
|
|
commit 1ea5208febcc068449b63282d72bb719ab67a466
|
|
category: feature
|
|
feature: SPR AMX support for Qemu
|
|
bugzilla: https://gitee.com/openeuler/intel-qemu/issues/I5VHOB
|
|
|
|
Intel-SIG: commit 1ea5208febcc ("linux-headers: include missing changes from 5.17")
|
|
|
|
------------------------------------------------
|
|
|
|
linux-headers: include missing changes from 5.17
|
|
|
|
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
|
|
Signed-off-by: Jason Zeng <jason.zeng@intel.com>
|
|
---
|
|
linux-headers/asm-x86/kvm.h | 3 +++
|
|
linux-headers/linux/kvm.h | 7 +++++++
|
|
2 files changed, 10 insertions(+)
|
|
|
|
diff --git a/linux-headers/asm-x86/kvm.h b/linux-headers/asm-x86/kvm.h
|
|
index a6c327f8ad..2ab4f1818a 100644
|
|
--- a/linux-headers/asm-x86/kvm.h
|
|
+++ b/linux-headers/asm-x86/kvm.h
|
|
@@ -437,6 +437,9 @@ struct kvm_sync_regs {
|
|
|
|
#define KVM_STATE_VMX_PREEMPTION_TIMER_DEADLINE 0x00000001
|
|
|
|
+/* attributes for system fd (group 0) */
|
|
+#define KVM_X86_XCOMP_GUEST_SUPP 0
|
|
+
|
|
struct kvm_vmx_nested_state_data {
|
|
__u8 vmcs12[KVM_STATE_NESTED_VMX_VMCS_SIZE];
|
|
__u8 shadow_vmcs12[KVM_STATE_NESTED_VMX_VMCS_SIZE];
|
|
diff --git a/linux-headers/linux/kvm.h b/linux-headers/linux/kvm.h
|
|
index 5d8e42b8f8..7870cd0280 100644
|
|
--- a/linux-headers/linux/kvm.h
|
|
+++ b/linux-headers/linux/kvm.h
|
|
@@ -1112,6 +1112,10 @@ struct kvm_ppc_resize_hpt {
|
|
#define KVM_CAP_BINARY_STATS_FD 203
|
|
#define KVM_CAP_EXIT_ON_EMULATION_FAILURE 204
|
|
#define KVM_CAP_ARM_MTE 205
|
|
+#define KVM_CAP_VM_MOVE_ENC_CONTEXT_FROM 206
|
|
+#define KVM_CAP_VM_GPA_BITS 207
|
|
+#define KVM_CAP_XSAVE2 208
|
|
+#define KVM_CAP_SYS_ATTRIBUTES 209
|
|
|
|
#define KVM_CAP_ARM_CPU_FEATURE 555
|
|
|
|
@@ -2006,4 +2010,7 @@ struct kvm_stats_desc {
|
|
|
|
#define KVM_GET_STATS_FD _IO(KVMIO, 0xce)
|
|
|
|
+/* Available with KVM_CAP_XSAVE2 */
|
|
+#define KVM_GET_XSAVE2 _IOR(KVMIO, 0xcf, struct kvm_xsave)
|
|
+
|
|
#endif /* __LINUX_KVM_H */
|
|
--
|
|
2.27.0
|
|
|