KVM: Return -ENOTTY on unrecognized ioctls
authorAvi Kivity <avi@redhat.com>
Wed, 26 Aug 2009 11:57:07 +0000 (14:57 +0300)
committerAvi Kivity <avi@redhat.com>
Thu, 3 Dec 2009 07:32:08 +0000 (09:32 +0200)
Not the incorrect -EINVAL.

Signed-off-by: Avi Kivity <avi@redhat.com>
arch/ia64/kvm/kvm-ia64.c
arch/powerpc/kvm/powerpc.c
arch/s390/kvm/kvm-s390.c
arch/x86/kvm/x86.c

index f534e0f..f6471c8 100644 (file)
@@ -941,7 +941,7 @@ long kvm_arch_vm_ioctl(struct file *filp,
 {
        struct kvm *kvm = filp->private_data;
        void __user *argp = (void __user *)arg;
-       int r = -EINVAL;
+       int r = -ENOTTY;
 
        switch (ioctl) {
        case KVM_SET_MEMORY_REGION: {
index 2a4551f..95af622 100644 (file)
@@ -421,7 +421,7 @@ long kvm_arch_vm_ioctl(struct file *filp,
 
        switch (ioctl) {
        default:
-               r = -EINVAL;
+               r = -ENOTTY;
        }
 
        return r;
index 07ced89..00e2ce8 100644 (file)
@@ -150,7 +150,7 @@ long kvm_arch_vm_ioctl(struct file *filp,
                break;
        }
        default:
-               r = -EINVAL;
+               r = -ENOTTY;
        }
 
        return r;
index 5beb4c1..829e306 100644 (file)
@@ -2176,7 +2176,7 @@ long kvm_arch_vm_ioctl(struct file *filp,
 {
        struct kvm *kvm = filp->private_data;
        void __user *argp = (void __user *)arg;
-       int r = -EINVAL;
+       int r = -ENOTTY;
        /*
         * This union makes it completely explicit to gcc-3.x
         * that these two variables' stack usage should be