Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934928AbcCKIUC (ORCPT ); Fri, 11 Mar 2016 03:20:02 -0500 Received: from mail-wm0-f49.google.com ([74.125.82.49]:38423 "EHLO mail-wm0-f49.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934359AbcCKITz (ORCPT ); Fri, 11 Mar 2016 03:19:55 -0500 Date: Fri, 11 Mar 2016 09:19:52 +0100 From: Michal Hocko To: Johannes Weiner Cc: Andrew Morton , Vladimir Davydov , linux-mm@kvack.org, cgroups@vger.kernel.org, linux-kernel@vger.kernel.org, kernel-team@fb.com Subject: Re: [PATCH] mm: memcontrol: clarify the uncharge_list() loop Message-ID: <20160311081951.GD27701@dhcp22.suse.cz> References: <1457643015-8828-3-git-send-email-hannes@cmpxchg.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1457643015-8828-3-git-send-email-hannes@cmpxchg.org> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1146 Lines: 42 On Thu 10-03-16 15:50:15, Johannes Weiner wrote: > uncharge_list() does an unusual list walk because the function can > take regular lists with dedicated list_heads as well as singleton > lists where a single page is passed via the page->lru list node. > > This can sometimes lead to confusion as well as suggestions to replace > the loop with a list_for_each_entry(), which wouldn't work. Yes this confused at least me 2 times AFAIR. > > Signed-off-by: Johannes Weiner Acked-by: Michal Hocko Thanks! > --- > mm/memcontrol.c | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/mm/memcontrol.c b/mm/memcontrol.c > index 8614e0d750e5..fa7bf354ae32 100644 > --- a/mm/memcontrol.c > +++ b/mm/memcontrol.c > @@ -5420,6 +5420,10 @@ static void uncharge_list(struct list_head *page_list) > struct list_head *next; > struct page *page; > > + /* > + * Note that the list can be a single page->lru; hence the > + * do-while loop instead of a simple list_for_each_entry(). > + */ > next = page_list->next; > do { > unsigned int nr_pages = 1; > -- > 2.7.2 -- Michal Hocko SUSE Labs