From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752612Ab1L0Xnz (ORCPT ); Tue, 27 Dec 2011 18:43:55 -0500 Received: from mail.linuxfoundation.org ([140.211.169.12]:54523 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751490Ab1L0Xnx (ORCPT ); Tue, 27 Dec 2011 18:43:53 -0500 Date: Tue, 27 Dec 2011 15:43:52 -0800 From: Andrew Morton To: Hillf Danton Cc: linux-mm@kvack.org, LKML , Michal Hocko , KAMEZAWA Hiroyuki Subject: Re: [PATCH] mm: hugetlb: fix non-atomic enqueue of huge page Message-Id: <20111227154352.0595b3a8.akpm@linux-foundation.org> In-Reply-To: References: X-Mailer: Sylpheed 3.0.2 (GTK+ 2.20.1; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 23 Dec 2011 21:35:25 +0800 Hillf Danton wrote: > From: Hillf Danton > Subject: [PATCH] mm: hugetlb: fix non-atomic enqueue of huge page > > If huge page is enqueued under the protection of hugetlb_lock, then > the operation is atomic and safe. > > Cc: Michal Hocko > Cc: KAMEZAWA Hiroyuki > Cc: Andrew Morton > Signed-off-by: Hillf Danton > --- > > --- a/mm/hugetlb.c Tue Dec 20 21:26:30 2011 > +++ b/mm/hugetlb.c Fri Dec 23 21:16:28 2011 > @@ -901,7 +901,6 @@ retry: > h->resv_huge_pages += delta; > ret = 0; > > - spin_unlock(&hugetlb_lock); > /* Free the needed pages to the hugetlb pool */ > list_for_each_entry_safe(page, tmp, &surplus_list, lru) { > if ((--needed) < 0) > @@ -915,6 +914,7 @@ retry: > VM_BUG_ON(page_count(page)); > enqueue_huge_page(h, page); > } > + spin_unlock(&hugetlb_lock); > > /* Free unnecessary surplus pages to the buddy allocator */ btw, /* Free the needed pages to the hugetlb pool */ list_for_each_entry_safe(page, tmp, &surplus_list, lru) { if ((--needed) < 0) break; list_del(&page->lru); /* * This page is now managed by the hugetlb allocator and has * no users -- drop the buddy allocator's reference. */ put_page_testzero(page); VM_BUG_ON(page_count(page)); enqueue_huge_page(h, page); } spin_unlock(&hugetlb_lock); That VM_BUG_ON() largely duplicates the one in put_page_testzero(). (Putting a VM_BUG_ON() in put_page_testzero() was pretty expensive, too. I wonder how many people are enabling VM_BUG_ON()? We should be sparing in using these things)