blob: c666649c4bb27c07e079b882898ac61fbe32d1dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef ARCH_X86_KVM_X86_H
#define ARCH_X86_KVM_X86_H
#include <linux/kvm_host.h>
static inline void kvm_clear_exception_queue(struct kvm_vcpu *vcpu)
{
vcpu->arch.exception.pending = false;
}
#endif
|