summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKees Cook <kees@kernel.org>2026-02-07 01:30:23 +0300
committerMarc Zyngier <maz@kernel.org>2026-02-13 17:59:04 +0300
commitee5c38a8d31e5dea52299c43c2ec3213351ab6e1 (patch)
treeaa3469217cc140308d37b5e4153c662f92f3b402
parent02471a78a052b631204aed051ab718e4d14ae687 (diff)
downloadlinux-ee5c38a8d31e5dea52299c43c2ec3213351ab6e1.tar.xz
KVM: arm64: vgic: Handle const qualifier from gic_kvm_info allocation type
In preparation for making the kmalloc family of allocators type aware, we need to make sure that the returned type from the allocation matches the type of the variable being assigned. (Before, the allocator would always return "void *", which can be implicitly cast to any pointer type.) The assigned type is "struct gic_kvm_info", but the returned type, while matching, is const qualified. To get them exactly matching, just use the dereferenced pointer for the sizeof(). Signed-off-by: Kees Cook <kees@kernel.org> Link: https://patch.msgid.link/20260206223022.it.052-kees@kernel.org Signed-off-by: Marc Zyngier <maz@kernel.org>
-rw-r--r--arch/arm64/kvm/vgic/vgic-init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/kvm/vgic/vgic-init.c b/arch/arm64/kvm/vgic/vgic-init.c
index 86c149537493..a53f93546aa0 100644
--- a/arch/arm64/kvm/vgic/vgic-init.c
+++ b/arch/arm64/kvm/vgic/vgic-init.c
@@ -654,7 +654,7 @@ static struct gic_kvm_info *gic_kvm_info;
void __init vgic_set_kvm_info(const struct gic_kvm_info *info)
{
BUG_ON(gic_kvm_info != NULL);
- gic_kvm_info = kmalloc(sizeof(*info), GFP_KERNEL);
+ gic_kvm_info = kmalloc(sizeof(*gic_kvm_info), GFP_KERNEL);
if (gic_kvm_info)
*gic_kvm_info = *info;
}