Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754892Ab2FYWtt (ORCPT ); Mon, 25 Jun 2012 18:49:49 -0400 Received: from mail-pb0-f46.google.com ([209.85.160.46]:58643 "EHLO mail-pb0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752432Ab2FYWtr (ORCPT ); Mon, 25 Jun 2012 18:49:47 -0400 Date: Mon, 25 Jun 2012 15:49:42 -0700 From: Tejun Heo To: Glauber Costa Cc: cgroups@vger.kernel.org, linux-mm@kvack.org, Andrew Morton , linux-kernel@vger.kernel.org, Frederic Weisbecker , David Rientjes , Pekka Enberg , Michal Hocko , Johannes Weiner , Christoph Lameter , devel@openvz.org, kamezawa.hiroyu@jp.fujitsu.com, Pekka Enberg , Suleiman Souhlal Subject: Re: [PATCH 09/11] memcg: propagate kmem limiting information to children Message-ID: <20120625224942.GN3869@google.com> References: <1340633728-12785-1-git-send-email-glommer@parallels.com> <1340633728-12785-10-git-send-email-glommer@parallels.com> <20120625182907.GF3869@google.com> <4FE8E7EB.2020804@parallels.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4FE8E7EB.2020804@parallels.com> User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1579 Lines: 44 Hello, Glauber. On Tue, Jun 26, 2012 at 02:36:27AM +0400, Glauber Costa wrote: > >Is the volatile declaration really necessary? Why is it necessary? > >Why no comment explaining it? > > Seems to be required by set_bit and friends. gcc will complain if it > is not volatile (take a look at the bit function headers) Hmmm? Are you sure gcc includes volatile in type check? There are a lot of bitops users in the kernel but most of them don't use volatile decl on the variable. > >>+ */ > >>+ parent = parent_mem_cgroup(iter); > >>+ while (parent && (parent != memcg)) { > >>+ if (test_bit(KMEM_ACCOUNTED_THIS, &parent->kmem_accounted)) > >>+ goto noclear; > >>+ > >>+ parent = parent_mem_cgroup(parent); > >>+ } > > > >Better written in for (;;)? Also, if we're breaking on parent == > >memcg, can we ever hit NULL parent in the above loop? > > I can simplify to test parent != memcg only, indeed it is not > expected to be NULL (but if it happens to be due to any kind of bug, > we protect against NULL-dereference, that is why I like to write > this way) I personally don't really like that. It doesn't really add meaningful protection (if that happens the tree walking is already severely broken) while causes confusion to future readers of the code (when can parent be NULL?). Thanks. -- tejun -- 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/