summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorMark McLoughlin <markmc@redhat.com>2009-09-18 17:29:25 -0300
committerGreg Kroah-Hartman <gregkh@suse.de>2009-10-05 09:32:23 -0700
commit1cb6728f666f55ecfcf79a9713c6f2b23d1b2925 (patch)
tree5ff43fad7a02718efba9e2c5b37847f3a2175dfe /arch
parenta7207f0d215647ce7ee5f0e6308d6afab6f3584c (diff)
KVM: fix cpuid E2BIG handling for extended request types
(cherry picked from commit cb007648de83cf226d69ec76e1c01848b4e8e49f) If we run out of cpuid entries for extended request types we should return -E2BIG, just like we do for the standard request types. Signed-off-by: Mark McLoughlin <markmc@redhat.com> Signed-off-by: Avi Kivity <avi@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/kvm/x86.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
index 3d360455fa24..a30e2858a767 100644
--- a/arch/x86/kvm/x86.c
+++ b/arch/x86/kvm/x86.c
@@ -1448,6 +1448,10 @@ static int kvm_dev_ioctl_get_supported_cpuid(struct kvm_cpuid2 *cpuid,
for (func = 0x80000001; func <= limit && nent < cpuid->nent; ++func)
do_cpuid_ent(&cpuid_entries[nent], func, 0,
&nent, cpuid->nent);
+ r = -E2BIG;
+ if (nent >= cpuid->nent)
+ goto out_free;
+
r = -EFAULT;
if (copy_to_user(entries, cpuid_entries,
nent * sizeof(struct kvm_cpuid_entry2)))