Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932118AbbEZRj2 (ORCPT ); Tue, 26 May 2015 13:39:28 -0400 Received: from mx1.redhat.com ([209.132.183.28]:51168 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751333AbbEZRjZ (ORCPT ); Tue, 26 May 2015 13:39:25 -0400 Date: Tue, 26 May 2015 19:38:22 +0200 From: Oleg Nesterov To: Michal Hocko Cc: linux-mm@kvack.org, Johannes Weiner , Tejun Heo , Vladimir Davydov , KAMEZAWA Hiroyuki , KOSAKI Motohiro , Andrew Morton , LKML Subject: Re: [RFC 3/3] memcg: get rid of mm_struct::owner Message-ID: <20150526173822.GA31777@redhat.com> References: <1432641006-8025-1-git-send-email-mhocko@suse.cz> <1432641006-8025-4-git-send-email-mhocko@suse.cz> <20150526163646.GA29968@redhat.com> <20150526172234.GK14681@dhcp22.suse.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150526172234.GK14681@dhcp22.suse.cz> User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1979 Lines: 64 On 05/26, Michal Hocko wrote: > > On Tue 26-05-15 18:36:46, Oleg Nesterov wrote: > > > > > +static struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p) > > > +{ > > > + if (!p->mm) > > > + return NULL; > > > + return rcu_dereference(p->mm->memcg); > > > +} > > > > Probably I missed something, but it seems that the callers do not > > expect it can return NULL. > > This hasn't changed by this patch. mem_cgroup_from_task was allowed to > return NULL even before. I've just made it static because it doesn't > have any external users anymore. I see, but it could only return NULL if mem_cgroup_from_css() returns NULL. Now it returns NULL for sure if the caller is task_in_mem_cgroup(), // called when task->mm == NULL task_memcg = mem_cgroup_from_task(task); css_get(&task_memcg->css); and this css_get() doesn't look nice if task_memcg == NULL ;) > I will double check Yes, please. Perhaps I missed something. > > And in fact I can't understand what mem_cgroup_from_task() actually > > means, with or without these changes. > > It performs task_struct->mem_cgroup mapping. We cannot use cgroup > mapping here because the charges are bound to mm_struct rather than > task. Sure, this is what I can understand. I meant... OK, lets ignore "without these changes", because without these changes there are much more oddities ;) With these changes only ->mm == NULL case looks unclear. And btw, if (!p->mm) return NULL; return rcu_dereference(p->mm->memcg); perhaps this needs a comment. It is not clear what protects ->mm. But. After this series "p" is always current (if ->mm != NULL), so this is fine. Nevermind. Please forget. I feel this needs a bit of cleanup, but we can always do this later. Oleg. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/