]> Git Repo - linux.git/commitdiff
KVM: x86: Fix a typo about the usage of kvcalloc()
authorLiao Chang <[email protected]>
Thu, 3 Nov 2022 01:17:49 +0000 (09:17 +0800)
committerPaolo Bonzini <[email protected]>
Thu, 3 Nov 2022 13:39:29 +0000 (09:39 -0400)
Swap the 1st and 2nd arguments to be consistent with the usage of
kvcalloc().

Fixes: c9b8fecddb5b ("KVM: use kvcalloc for array allocations")
Signed-off-by: Liao Chang <[email protected]>
Message-Id: <20221103011749[email protected]>
Signed-off-by: Paolo Bonzini <[email protected]>
arch/x86/kvm/cpuid.c

index 0810e93cbedc0e9cbe5c032d9b2f0f39b0bb3d63..62bc7a01ceccaa7d533be22b88e5a896c136f09b 100644 (file)
@@ -1338,7 +1338,7 @@ int kvm_dev_ioctl_get_cpuid(struct kvm_cpuid2 *cpuid,
        if (sanity_check_entries(entries, cpuid->nent, type))
                return -EINVAL;
 
-       array.entries = kvcalloc(sizeof(struct kvm_cpuid_entry2), cpuid->nent, GFP_KERNEL);
+       array.entries = kvcalloc(cpuid->nent, sizeof(struct kvm_cpuid_entry2), GFP_KERNEL);
        if (!array.entries)
                return -ENOMEM;
 
This page took 0.060423 seconds and 4 git commands to generate.