From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail191.messagelabs.com (mail191.messagelabs.com [216.82.242.19]) by kanga.kvack.org (Postfix) with ESMTP id 9D7AF6B01AF for ; Wed, 2 Jun 2010 02:33:51 -0400 (EDT) Date: Wed, 2 Jun 2010 14:45:45 +0900 From: Daisuke Nishimura Subject: [RFC][BUGFIX][PATCH 1/2] transhuge-memcg: fix for memcg compound Message-Id: <20100602144545.1e865f15.nishimura@mxp.nes.nec.co.jp> In-Reply-To: <20100602144438.dc04ece7.nishimura@mxp.nes.nec.co.jp> References: <20100521000539.GA5733@random.random> <20100602144438.dc04ece7.nishimura@mxp.nes.nec.co.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-linux-mm@kvack.org To: Andrea Arcangeli Cc: linux-mm@kvack.org, Andrew Morton , linux-kernel@vger.kernel.org, Marcelo Tosatti , Adam Litke , Avi Kivity , Izik Eidus , Hugh Dickins , Nick Piggin , Rik van Riel , Mel Gorman , Dave Hansen , Benjamin Herrenschmidt , Ingo Molnar , Mike Travis , KAMEZAWA Hiroyuki , Christoph Lameter , Chris Wright , bpicco@redhat.com, KOSAKI Motohiro , Balbir Singh , "Michael S. Tsirkin" , Peter Zijlstra , Johannes Weiner , Chris Mason , Borislav Petkov , Daisuke Nishimura List-ID: We should increase/decrease css->refcnt properly in charging/uncharging compound pages. Without this patch, a bug like below happens: 1. create a memcg directory. 2. run a program which uses enough memory to allocate them as transparent huge pages. 3. kill the program. 4. try to remove the directory, which will never finish. Signed-off-by: Daisuke Nishimura diff --git a/mm/memcontrol.c b/mm/memcontrol.c index b1ac9b1..b74bd83 100644 --- a/mm/memcontrol.c +++ b/mm/memcontrol.c @@ -1650,8 +1650,9 @@ static int __mem_cgroup_try_charge(struct mm_struct *mm, } if (csize > page_size) refill_stock(mem, csize - page_size); + /* increase css->refcnt by the number of tail pages */ if (page_size != PAGE_SIZE) - __css_get(&mem->css, page_size); + __css_get(&mem->css, (page_size >> PAGE_SHIFT) - 1); done: return 0; nomem: @@ -2237,7 +2238,7 @@ __mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype) memcg_check_events(mem, page); /* at swapout, this memcg will be accessed to record to swap */ if (ctype != MEM_CGROUP_CHARGE_TYPE_SWAPOUT) - css_put(&mem->css); + __css_put(&mem->css, page_size >> PAGE_SHIFT); return mem; -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org