summaryrefslogtreecommitdiffstats
path: root/arch/arm64/kvm/vgic/vgic-irqfd.c
diff options
context:
space:
mode:
authorJia He <justin.he@arm.com>2021-09-07 20:31:11 +0800
committerMarc Zyngier <maz@kernel.org>2021-10-17 11:25:55 +0100
commit3ef231670b9e9001316a426e794b2c74b8f6b4f6 (patch)
treeebc5904224dbda17654ad0cce6d2cb28fde35e5f /arch/arm64/kvm/vgic/vgic-irqfd.c
parent9e1ff307c779ce1f0f810c7ecce3d95bbae40896 (diff)
downloadlinux-3ef231670b9e9001316a426e794b2c74b8f6b4f6.tar.gz
linux-3ef231670b9e9001316a426e794b2c74b8f6b4f6.tar.bz2
linux-3ef231670b9e9001316a426e794b2c74b8f6b4f6.zip
KVM: arm64: vgic: Add memcg accounting to vgic allocations
Inspired by commit 254272ce6505 ("kvm: x86: Add memcg accounting to KVM allocations"), it would be better to make arm64 vgic consistent with common kvm codes. The memory allocations of VM scope should be charged into VM process cgroup, hence change GFP_KERNEL to GFP_KERNEL_ACCOUNT. There remain a few cases since these allocations are global, not in VM scope. Signed-off-by: Jia He <justin.he@arm.com> Reviewed-by: Oliver Upton <oupton@google.com> Signed-off-by: Marc Zyngier <maz@kernel.org> Link: https://lore.kernel.org/r/20210907123112.10232-2-justin.he@arm.com
Diffstat (limited to 'arch/arm64/kvm/vgic/vgic-irqfd.c')
-rw-r--r--arch/arm64/kvm/vgic/vgic-irqfd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/kvm/vgic/vgic-irqfd.c b/arch/arm64/kvm/vgic/vgic-irqfd.c
index 79f8899b234c..475059bacedf 100644
--- a/arch/arm64/kvm/vgic/vgic-irqfd.c
+++ b/arch/arm64/kvm/vgic/vgic-irqfd.c
@@ -139,7 +139,7 @@ int kvm_vgic_setup_default_irq_routing(struct kvm *kvm)
u32 nr = dist->nr_spis;
int i, ret;
- entries = kcalloc(nr, sizeof(*entries), GFP_KERNEL);
+ entries = kcalloc(nr, sizeof(*entries), GFP_KERNEL_ACCOUNT);
if (!entries)
return -ENOMEM;