summaryrefslogtreecommitdiff
path: root/arch/powerpc/kvm
diff options
context:
space:
mode:
authorAvi Kivity <avi@redhat.com>2009-08-26 14:57:07 +0300
committerAvi Kivity <avi@redhat.com>2009-12-03 09:32:08 +0200
commit367e1319b229110a27c53221c2fa32a6aa86d4a9 (patch)
tree189e289b9985cf3c9b1416b3cc7be3c7ddc7d130 /arch/powerpc/kvm
parent680b3648ba89c44ac8d0316f78a0d6e147b88809 (diff)
downloadlinux-3.10-367e1319b229110a27c53221c2fa32a6aa86d4a9.tar.gz
linux-3.10-367e1319b229110a27c53221c2fa32a6aa86d4a9.tar.bz2
linux-3.10-367e1319b229110a27c53221c2fa32a6aa86d4a9.zip
KVM: Return -ENOTTY on unrecognized ioctls
Not the incorrect -EINVAL. Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/powerpc/kvm')
-rw-r--r--arch/powerpc/kvm/powerpc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kvm/powerpc.c b/arch/powerpc/kvm/powerpc.c
index 2a4551f78f6..95af62217b6 100644
--- a/arch/powerpc/kvm/powerpc.c
+++ b/arch/powerpc/kvm/powerpc.c
@@ -421,7 +421,7 @@ long kvm_arch_vm_ioctl(struct file *filp,
switch (ioctl) {
default:
- r = -EINVAL;
+ r = -ENOTTY;
}
return r;