From: Marc Zyngier <maz@kernel.org>
To: Jia He <justin.he@arm.com>
Cc: Xiaoming Ni <nixiaoming@huawei.com>,
Shenming Lu <lushenming@huawei.com>,
Kees Cook <keescook@chromium.org>, Will Deacon <will@kernel.org>,
Catalin Marinas <catalin.marinas@arm.com>,
Nick Desaulniers <ndesaulniers@google.com>,
linux-kernel@vger.kernel.org, Liu Shixin <liushixin2@huawei.com>,
Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>,
Sami Tolvanen <samitolvanen@google.com>,
kvmarm@lists.cs.columbia.edu,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 1/2] KVM: arm64: vgic: Add memcg accounting to vgic allocations
Date: Thu, 02 Sep 2021 19:03:32 +0100 [thread overview]
Message-ID: <877dfyx3bf.wl-maz@kernel.org> (raw)
In-Reply-To: <20210902002801.32618-1-justin.he@arm.com>
Jia,
Once again: please add a cover letter when you have a patch
series. It isn't rocket science, and Git will do it for you.
On Thu, 02 Sep 2021 01:28:00 +0100,
Jia He <justin.he@arm.com> wrote:
>
> 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 remained a case in vgic_set_kvm_info() since this allocation is
> global, not in VM scope.
>
> Signed-off-by: Jia He <justin.he@arm.com>
> ---
> arch/arm64/kvm/vgic/vgic-debug.c | 2 +-
> arch/arm64/kvm/vgic/vgic-init.c | 2 +-
> arch/arm64/kvm/vgic/vgic-irqfd.c | 2 +-
> arch/arm64/kvm/vgic/vgic-its.c | 14 +++++++-------
> arch/arm64/kvm/vgic/vgic-mmio-v3.c | 2 +-
> arch/arm64/kvm/vgic/vgic-v4.c | 2 +-
> 6 files changed, 12 insertions(+), 12 deletions(-)
>
> diff --git a/arch/arm64/kvm/vgic/vgic-debug.c b/arch/arm64/kvm/vgic/vgic-debug.c
> index f38c40a76251..e6a01f210df9 100644
> --- a/arch/arm64/kvm/vgic/vgic-debug.c
> +++ b/arch/arm64/kvm/vgic/vgic-debug.c
> @@ -92,7 +92,7 @@ static void *vgic_debug_start(struct seq_file *s, loff_t *pos)
> goto out;
> }
>
> - iter = kmalloc(sizeof(*iter), GFP_KERNEL);
> + iter = kmalloc(sizeof(*iter), GFP_KERNEL_ACCOUNT);
This really isn't an allocation made in the context of a VM. I don't
think this hunk belongs here.
Thanks,
M.
--
Without deviation from the norm, progress is not possible.
_______________________________________________
kvmarm mailing list
kvmarm@lists.cs.columbia.edu
https://lists.cs.columbia.edu/mailman/listinfo/kvmarm
WARNING: multiple messages have this Message-ID (diff)
From: Marc Zyngier <maz@kernel.org>
To: Jia He <justin.he@arm.com>
Cc: James Morse <james.morse@arm.com>,
Alexandru Elisei <alexandru.elisei@arm.com>,
Suzuki K Poulose <suzuki.poulose@arm.com>,
Catalin Marinas <catalin.marinas@arm.com>,
Will Deacon <will@kernel.org>, Liu Shixin <liushixin2@huawei.com>,
Eric Auger <eric.auger@redhat.com>,
Kees Cook <keescook@chromium.org>,
Nick Desaulniers <ndesaulniers@google.com>,
Shenming Lu <lushenming@huawei.com>,
Sami Tolvanen <samitolvanen@google.com>,
Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>,
Xiaoming Ni <nixiaoming@huawei.com>,
Zenghui Yu <yuzenghui@huawei.com>,
linux-arm-kernel@lists.infradead.org,
kvmarm@lists.cs.columbia.edu, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 1/2] KVM: arm64: vgic: Add memcg accounting to vgic allocations
Date: Thu, 02 Sep 2021 19:03:32 +0100 [thread overview]
Message-ID: <877dfyx3bf.wl-maz@kernel.org> (raw)
In-Reply-To: <20210902002801.32618-1-justin.he@arm.com>
Jia,
Once again: please add a cover letter when you have a patch
series. It isn't rocket science, and Git will do it for you.
On Thu, 02 Sep 2021 01:28:00 +0100,
Jia He <justin.he@arm.com> wrote:
>
> 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 remained a case in vgic_set_kvm_info() since this allocation is
> global, not in VM scope.
>
> Signed-off-by: Jia He <justin.he@arm.com>
> ---
> arch/arm64/kvm/vgic/vgic-debug.c | 2 +-
> arch/arm64/kvm/vgic/vgic-init.c | 2 +-
> arch/arm64/kvm/vgic/vgic-irqfd.c | 2 +-
> arch/arm64/kvm/vgic/vgic-its.c | 14 +++++++-------
> arch/arm64/kvm/vgic/vgic-mmio-v3.c | 2 +-
> arch/arm64/kvm/vgic/vgic-v4.c | 2 +-
> 6 files changed, 12 insertions(+), 12 deletions(-)
>
> diff --git a/arch/arm64/kvm/vgic/vgic-debug.c b/arch/arm64/kvm/vgic/vgic-debug.c
> index f38c40a76251..e6a01f210df9 100644
> --- a/arch/arm64/kvm/vgic/vgic-debug.c
> +++ b/arch/arm64/kvm/vgic/vgic-debug.c
> @@ -92,7 +92,7 @@ static void *vgic_debug_start(struct seq_file *s, loff_t *pos)
> goto out;
> }
>
> - iter = kmalloc(sizeof(*iter), GFP_KERNEL);
> + iter = kmalloc(sizeof(*iter), GFP_KERNEL_ACCOUNT);
This really isn't an allocation made in the context of a VM. I don't
think this hunk belongs here.
Thanks,
M.
--
Without deviation from the norm, progress is not possible.
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
WARNING: multiple messages have this Message-ID (diff)
From: Marc Zyngier <maz@kernel.org>
To: Jia He <justin.he@arm.com>
Cc: James Morse <james.morse@arm.com>,
Alexandru Elisei <alexandru.elisei@arm.com>,
Suzuki K Poulose <suzuki.poulose@arm.com>,
Catalin Marinas <catalin.marinas@arm.com>,
Will Deacon <will@kernel.org>, Liu Shixin <liushixin2@huawei.com>,
Eric Auger <eric.auger@redhat.com>,
Kees Cook <keescook@chromium.org>,
Nick Desaulniers <ndesaulniers@google.com>,
Shenming Lu <lushenming@huawei.com>,
Sami Tolvanen <samitolvanen@google.com>,
Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>,
Xiaoming Ni <nixiaoming@huawei.com>,
Zenghui Yu <yuzenghui@huawei.com>,
linux-arm-kernel@lists.infradead.org,
kvmarm@lists.cs.columbia.edu, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 1/2] KVM: arm64: vgic: Add memcg accounting to vgic allocations
Date: Thu, 02 Sep 2021 19:03:32 +0100 [thread overview]
Message-ID: <877dfyx3bf.wl-maz@kernel.org> (raw)
In-Reply-To: <20210902002801.32618-1-justin.he@arm.com>
Jia,
Once again: please add a cover letter when you have a patch
series. It isn't rocket science, and Git will do it for you.
On Thu, 02 Sep 2021 01:28:00 +0100,
Jia He <justin.he@arm.com> wrote:
>
> 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 remained a case in vgic_set_kvm_info() since this allocation is
> global, not in VM scope.
>
> Signed-off-by: Jia He <justin.he@arm.com>
> ---
> arch/arm64/kvm/vgic/vgic-debug.c | 2 +-
> arch/arm64/kvm/vgic/vgic-init.c | 2 +-
> arch/arm64/kvm/vgic/vgic-irqfd.c | 2 +-
> arch/arm64/kvm/vgic/vgic-its.c | 14 +++++++-------
> arch/arm64/kvm/vgic/vgic-mmio-v3.c | 2 +-
> arch/arm64/kvm/vgic/vgic-v4.c | 2 +-
> 6 files changed, 12 insertions(+), 12 deletions(-)
>
> diff --git a/arch/arm64/kvm/vgic/vgic-debug.c b/arch/arm64/kvm/vgic/vgic-debug.c
> index f38c40a76251..e6a01f210df9 100644
> --- a/arch/arm64/kvm/vgic/vgic-debug.c
> +++ b/arch/arm64/kvm/vgic/vgic-debug.c
> @@ -92,7 +92,7 @@ static void *vgic_debug_start(struct seq_file *s, loff_t *pos)
> goto out;
> }
>
> - iter = kmalloc(sizeof(*iter), GFP_KERNEL);
> + iter = kmalloc(sizeof(*iter), GFP_KERNEL_ACCOUNT);
This really isn't an allocation made in the context of a VM. I don't
think this hunk belongs here.
Thanks,
M.
--
Without deviation from the norm, progress is not possible.
next prev parent reply other threads:[~2021-09-02 18:03 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-09-02 0:28 [PATCH 1/2] KVM: arm64: vgic: Add memcg accounting to vgic allocations Jia He
2021-09-02 0:28 ` Jia He
2021-09-02 0:28 ` Jia He
2021-09-02 0:28 ` [PATCH 2/2] KVM: arm64: Add memcg accounting to KVM allocations Jia He
2021-09-02 0:28 ` Jia He
2021-09-02 0:28 ` Jia He
2021-09-02 18:11 ` Marc Zyngier
2021-09-02 18:11 ` Marc Zyngier
2021-09-02 18:11 ` Marc Zyngier
2021-09-03 9:21 ` Justin He
2021-09-03 9:21 ` Justin He
2021-09-03 9:21 ` Justin He
2021-09-02 18:03 ` Marc Zyngier [this message]
2021-09-02 18:03 ` [PATCH 1/2] KVM: arm64: vgic: Add memcg accounting to vgic allocations Marc Zyngier
2021-09-02 18:03 ` Marc Zyngier
2021-09-03 9:18 ` Justin He
2021-09-03 9:18 ` Justin He
2021-09-03 9:18 ` Justin He
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=877dfyx3bf.wl-maz@kernel.org \
--to=maz@kernel.org \
--cc=catalin.marinas@arm.com \
--cc=justin.he@arm.com \
--cc=keescook@chromium.org \
--cc=kvmarm@lists.cs.columbia.edu \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=liushixin2@huawei.com \
--cc=lorenzo.pieralisi@arm.com \
--cc=lushenming@huawei.com \
--cc=ndesaulniers@google.com \
--cc=nixiaoming@huawei.com \
--cc=samitolvanen@google.com \
--cc=will@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.