aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm
diff options
context:
space:
mode:
authorJim Mattson <jmattson@google.com>2018-10-16 14:29:19 -0700
committerPaolo Bonzini <pbonzini@redhat.com>2018-10-17 00:30:22 +0200
commitc851436a34cad09388f1303e11ccb6b9420e5692 (patch)
treeda3852939ce2812d4294f36d9ab369d59a04310a /arch/x86/include/asm
parentKVM: Documentation: Fix omission in struct kvm_vcpu_events (diff)
downloadlinux-dev-c851436a34cad09388f1303e11ccb6b9420e5692.tar.xz
linux-dev-c851436a34cad09388f1303e11ccb6b9420e5692.zip
kvm: x86: Add has_payload and payload to kvm_queued_exception
The payload associated with a #PF exception is the linear address of the fault to be loaded into CR2 when the fault is delivered. The payload associated with a #DB exception is a mask of the DR6 bits to be set (or in the case of DR6.RTM, cleared) when the fault is delivered. Add fields has_payload and payload to kvm_queued_exception to track payloads for pending exceptions. The new fields are introduced here, but for now, they are just cleared. Reported-by: Jim Mattson <jmattson@google.com> Suggested-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Jim Mattson <jmattson@google.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch/x86/include/asm')
-rw-r--r--arch/x86/include/asm/kvm_host.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/include/asm/kvm_host.h b/arch/x86/include/asm/kvm_host.h
index 258fc2c85301..20f7c994afeb 100644
--- a/arch/x86/include/asm/kvm_host.h
+++ b/arch/x86/include/asm/kvm_host.h
@@ -628,6 +628,8 @@ struct kvm_vcpu_arch {
bool has_error_code;
u8 nr;
u32 error_code;
+ unsigned long payload;
+ bool has_payload;
u8 nested_apf;
} exception;