Merge commit 'perf/core' into perf/hw-breakpoint
[deliverable/linux.git] / arch / x86 / kvm / x86.c
index 74029f50b26a782bb9f8dbd14875e638c7b4098e..fc2974adf9b65a3933345dcec24e051b925b66d2 100644 (file)
@@ -1591,6 +1591,8 @@ static int kvm_dev_ioctl_get_supported_cpuid(struct kvm_cpuid2 *cpuid,
 
        if (cpuid->nent < 1)
                goto out;
+       if (cpuid->nent > KVM_MAX_CPUID_ENTRIES)
+               cpuid->nent = KVM_MAX_CPUID_ENTRIES;
        r = -ENOMEM;
        cpuid_entries = vmalloc(sizeof(struct kvm_cpuid_entry2) * cpuid->nent);
        if (!cpuid_entries)
This page took 0.025872 seconds and 5 git commands to generate.