KVM: Limit vcpu mmap size to one page on non-x86
authorAvi Kivity <avi@qumranet.com>
Thu, 24 Jan 2008 13:13:08 +0000 (15:13 +0200)
committerAvi Kivity <avi@qumranet.com>
Sun, 27 Apr 2008 08:53:17 +0000 (11:53 +0300)
The second page is only needed on archs that support pio.

Noted by Carsten Otte.

Signed-off-by: Avi Kivity <avi@qumranet.com>
virt/kvm/kvm_main.c

index 121e65c..7972e3a 100644 (file)
@@ -1061,7 +1061,10 @@ static long kvm_dev_ioctl(struct file *filp,
                r = -EINVAL;
                if (arg)
                        goto out;
-               r = 2 * PAGE_SIZE;
+               r = PAGE_SIZE;     /* struct kvm_run */
+#ifdef CONFIG_X86
+               r += PAGE_SIZE;    /* pio data page */
+#endif
                break;
        default:
                return kvm_arch_dev_ioctl(filp, ioctl, arg);