Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 09566765 authored by Avi Kivity's avatar Avi Kivity
Browse files

KVM: Only x86 has pio



Signed-off-by: default avatarAvi Kivity <avi@qumranet.com>
parent 5c502742
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -678,8 +678,10 @@ static int kvm_vcpu_fault(struct vm_area_struct *vma, struct vm_fault *vmf)

	if (vmf->pgoff == 0)
		page = virt_to_page(vcpu->run);
#ifdef CONFIG_X86
	else if (vmf->pgoff == KVM_PIO_PAGE_OFFSET)
		page = virt_to_page(vcpu->arch.pio_data);
#endif
	else
		return VM_FAULT_SIGBUS;
	get_page(page);