[Devel] Re: [PATCH v3 07/16] memcg: skip memcg kmem allocations in specified code regions
Tejun Heo
tj at kernel.org
Fri Sep 21 12:59:29 PDT 2012
Hello,
On Tue, Sep 18, 2012 at 06:12:01PM +0400, Glauber Costa wrote:
> +static void memcg_stop_kmem_account(void)
> +{
> + if (!current->mm)
> + return;
> +
> + current->memcg_kmem_skip_account++;
> +}
> +
> +static void memcg_resume_kmem_account(void)
> +{
> + if (!current->mm)
> + return;
> +
> + current->memcg_kmem_skip_account--;
> +}
I can't say I'm a big fan of this approach. If there are enough
users, maybe but can't we just annotate the affected allocations
explicitly? Is this gonna have many more users?
Also, in general, can we please add some comments? I know memcg code
is dearth of comments but let's please not keep it that way.
Thanks.
--
tejun
More information about the Devel
mailing list