projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ec68798
)
KVM: ia64: fix the error code of ioctl KVM_IA64_VCPU_GET_STACK failure
author
Wei Yongjun
<yjwei@cn.fujitsu.com>
Fri, 12 Mar 2010 00:45:39 +0000
(08:45 +0800)
committer
Avi Kivity
<avi@redhat.com>
Mon, 17 May 2010 09:15:30 +0000
(12:15 +0300)
The ioctl KVM_IA64_VCPU_GET_STACK does not set the error code if
copy_to_user() fail, and 0 will be return, we should use -EFAULT
instead of 0 in this case, so this patch fixed it.
Signed-off-by: Wei Yongjun <yjwei@cn.fujitsu.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
arch/ia64/kvm/kvm-ia64.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/ia64/kvm/kvm-ia64.c
b/arch/ia64/kvm/kvm-ia64.c
index 7f3c0a2e60cdb32178f757534f670ab74f3b19a6..38d51302f5b3e44da3b5adeb97ad42ffe3699e6d 100644
(file)
--- a/
arch/ia64/kvm/kvm-ia64.c
+++ b/
arch/ia64/kvm/kvm-ia64.c
@@
-1535,8
+1535,10
@@
long kvm_arch_vcpu_ioctl(struct file *filp,
goto out;
if (copy_to_user(user_stack, stack,
- sizeof(struct kvm_ia64_vcpu_stack)))
+ sizeof(struct kvm_ia64_vcpu_stack))) {
+ r = -EFAULT;
goto out;
+ }
break;
}