12 lines
203 B
C
12 lines
203 B
C
|
#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
|