aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAvi Kivity <avi@redhat.com>2009-08-26 07:57:07 -0400
committerAvi Kivity <avi@redhat.com>2009-12-03 02:32:08 -0500
commit367e1319b229110a27c53221c2fa32a6aa86d4a9 (patch)
tree189e289b9985cf3c9b1416b3cc7be3c7ddc7d130
parent680b3648ba89c44ac8d0316f78a0d6e147b88809 (diff)
KVM: Return -ENOTTY on unrecognized ioctls
Not the incorrect -EINVAL. Signed-off-by: Avi Kivity <avi@redhat.com>
-rw-r--r--arch/ia64/kvm/kvm-ia64.c2
-rw-r--r--arch/powerpc/kvm/powerpc.c2
-rw-r--r--arch/s390/kvm/kvm-s390.c2
-rw-r--r--arch/x86/kvm/x86.c2
4 files changed, 4 insertions, 4 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: {
diff --git a/arch/powerpc/kvm/powerpc.c b/arch/powerpc/kvm/powerpc.c
index 2a4551f78f60..95af62217b6b 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,
421 421
422 switch (ioctl) { 422 switch (ioctl) {
423 default: 423 default:
424 r = -EINVAL; 424 r = -ENOTTY;
425 } 425 }
426 426
427 return r; 427 return r;
diff --git a/arch/s390/kvm/kvm-s390.c b/arch/s390/kvm/kvm-s390.c
index 07ced89740d7..00e2ce8e91f5 100644
--- a/arch/s390/kvm/kvm-s390.c
+++ b/arch/s390/kvm/kvm-s390.c
@@ -150,7 +150,7 @@ long kvm_arch_vm_ioctl(struct file *filp,
150 break; 150 break;
151 } 151 }
152 default: 152 default:
153 r = -EINVAL; 153 r = -ENOTTY;
154 } 154 }
155 155
156 return r; 156 return r;
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
index 5beb4c16caab..829e3063e2ab 100644
--- a/arch/x86/kvm/x86.c
+++ b/arch/x86/kvm/x86.c
@@ -2176,7 +2176,7 @@ long kvm_arch_vm_ioctl(struct file *filp,
2176{ 2176{
2177 struct kvm *kvm = filp->private_data; 2177 struct kvm *kvm = filp->private_data;
2178 void __user *argp = (void __user *)arg; 2178 void __user *argp = (void __user *)arg;
2179 int r = -EINVAL; 2179 int r = -ENOTTY;
2180 /* 2180 /*
2181 * This union makes it completely explicit to gcc-3.x 2181 * This union makes it completely explicit to gcc-3.x
2182 * that these two variables' stack usage should be 2182 * that these two variables' stack usage should be