diff options
author | Avi Kivity <avi@redhat.com> | 2009-08-26 07:57:07 -0400 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2009-12-03 02:32:08 -0500 |
commit | 367e1319b229110a27c53221c2fa32a6aa86d4a9 (patch) | |
tree | 189e289b9985cf3c9b1416b3cc7be3c7ddc7d130 /arch/ia64 | |
parent | 680b3648ba89c44ac8d0316f78a0d6e147b88809 (diff) |
KVM: Return -ENOTTY on unrecognized ioctls
Not the incorrect -EINVAL.
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/ia64')
-rw-r--r-- | arch/ia64/kvm/kvm-ia64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ia64/kvm/kvm-ia64.c b/arch/ia64/kvm/kvm-ia64.c index f534e0f6bb0d..f6471c882667 100644 --- a/arch/ia64/kvm/kvm-ia64.c +++ b/arch/ia64/kvm/kvm-ia64.c | |||
@@ -941,7 +941,7 @@ long kvm_arch_vm_ioctl(struct file *filp, | |||
941 | { | 941 | { |
942 | struct kvm *kvm = filp->private_data; | 942 | struct kvm *kvm = filp->private_data; |
943 | void __user *argp = (void __user *)arg; | 943 | void __user *argp = (void __user *)arg; |
944 | int r = -EINVAL; | 944 | int r = -ENOTTY; |
945 | 945 | ||
946 | switch (ioctl) { | 946 | switch (ioctl) { |
947 | case KVM_SET_MEMORY_REGION: { | 947 | case KVM_SET_MEMORY_REGION: { |