[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20190111191108.GK14956@dhcp22.suse.cz>
Date: Fri, 11 Jan 2019 20:11:08 +0100
From: Michal Hocko <mhocko@...nel.org>
To: Yang Shi <yang.shi@...ux.alibaba.com>
Cc: ying.huang@...el.com, tim.c.chen@...el.com,
akpm@...ux-foundation.org, linux-mm@...ck.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH] mm: swap: use mem_cgroup_is_root() instead of
deferencing css->parent
On Sat 12-01-19 02:55:13, Yang Shi wrote:
> mem_cgroup_is_root() is preferred API to check if memcg is root or not.
> Use it instead of deferencing css->parent.
>
> Cc: Huang Ying <ying.huang@...el.com>
> Cc: Tim Chen <tim.c.chen@...el.com>
> Signed-off-by: Yang Shi <yang.shi@...ux.alibaba.com>
Yes, this is more readable.
Acked-by: Michal Hocko <mhocko@...e.com>
> ---
> include/linux/swap.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/include/linux/swap.h b/include/linux/swap.h
> index a8f6d5d..8739063 100644
> --- a/include/linux/swap.h
> +++ b/include/linux/swap.h
> @@ -623,7 +623,7 @@ static inline int mem_cgroup_swappiness(struct mem_cgroup *memcg)
> return vm_swappiness;
>
> /* root ? */
> - if (mem_cgroup_disabled() || !memcg->css.parent)
> + if (mem_cgroup_disabled() || mem_cgroup_is_root(memcg))
> return vm_swappiness;
>
> return memcg->swappiness;
> --
> 1.8.3.1
--
Michal Hocko
SUSE Labs
Powered by blists - more mailing lists