Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754207Ab3GaFCx (ORCPT ); Wed, 31 Jul 2013 01:02:53 -0400 Received: from lgeamrelo02.lge.com ([156.147.1.126]:50899 "EHLO LGEAMRELO02.lge.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751934Ab3GaFCw (ORCPT ); Wed, 31 Jul 2013 01:02:52 -0400 X-AuditID: 9c93017e-b7b62ae000000eeb-e3-51f89a795d66 Date: Wed, 31 Jul 2013 14:02:50 +0900 From: Joonsoo Kim To: Naoya Horiguchi Cc: Andrew Morton , Rik van Riel , Mel Gorman , Michal Hocko , "Aneesh Kumar K.V" , KAMEZAWA Hiroyuki , Hugh Dickins , Davidlohr Bueso , David Gibson , linux-mm@kvack.org, linux-kernel@vger.kernel.org, Wanpeng Li , Hillf Danton Subject: Re: [PATCH 08/18] mm, hugetlb: do hugepage_subpool_get_pages() when avoid_reserve Message-ID: <20130731050250.GH2548@lge.com> References: <1375075929-6119-1-git-send-email-iamjoonsoo.kim@lge.com> <1375075929-6119-9-git-send-email-iamjoonsoo.kim@lge.com> <1375121151-dxyftdvy-mutt-n-horiguchi@ah.jp.nec.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1375121151-dxyftdvy-mutt-n-horiguchi@ah.jp.nec.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-Brightmail-Tracker: AAAAAA== Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2316 Lines: 64 On Mon, Jul 29, 2013 at 02:05:51PM -0400, Naoya Horiguchi wrote: > On Mon, Jul 29, 2013 at 02:31:59PM +0900, Joonsoo Kim wrote: > > When we try to get a huge page with avoid_reserve, we don't consume > > a reserved page. So it is treated like as non-reserve case. > > This patch will be completely overwritten with 9/18. > So is this patch necessary? Yes. This is a bug fix, so should be separate. When we try to allocate with avoid_reserve, we don't use reserved page pool. So, hugepage_subpool_get_pages() should be called and returned if failed. If we merge these into one, we cannot know that there exists a bug. Thanks. > > Naoya Horiguchi > > > Signed-off-by: Joonsoo Kim > > > > diff --git a/mm/hugetlb.c b/mm/hugetlb.c > > index 1426c03..749629e 100644 > > --- a/mm/hugetlb.c > > +++ b/mm/hugetlb.c > > @@ -1149,12 +1149,13 @@ static struct page *alloc_huge_page(struct vm_area_struct *vma, > > if (has_reserve < 0) > > return ERR_PTR(-ENOMEM); > > > > - if (!has_reserve && (hugepage_subpool_get_pages(spool, 1) < 0)) > > + if ((!has_reserve || avoid_reserve) > > + && (hugepage_subpool_get_pages(spool, 1) < 0)) > > return ERR_PTR(-ENOSPC); > > > > ret = hugetlb_cgroup_charge_cgroup(idx, pages_per_huge_page(h), &h_cg); > > if (ret) { > > - if (!has_reserve) > > + if (!has_reserve || avoid_reserve) > > hugepage_subpool_put_pages(spool, 1); > > return ERR_PTR(-ENOSPC); > > } > > @@ -1167,7 +1168,7 @@ static struct page *alloc_huge_page(struct vm_area_struct *vma, > > hugetlb_cgroup_uncharge_cgroup(idx, > > pages_per_huge_page(h), > > h_cg); > > - if (!has_reserve) > > + if (!has_reserve || avoid_reserve) > > hugepage_subpool_put_pages(spool, 1); > > return ERR_PTR(-ENOSPC); > > } > > -- > > 1.7.9.5 > > > > -- > 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 -- 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/