From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933996AbdAIJUN (ORCPT ); Mon, 9 Jan 2017 04:20:13 -0500 Received: from mail-pf0-f194.google.com ([209.85.192.194]:32797 "EHLO mail-pf0-f194.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932627AbdAIJT7 (ORCPT ); Mon, 9 Jan 2017 04:19:59 -0500 From: Balbir Singh X-Google-Original-From: Balbir Singh Date: Mon, 9 Jan 2017 14:49:52 +0530 To: =?iso-8859-1?B?Suly9G1l?= Glisse Cc: akpm@linux-foundation.org, linux-kernel@vger.kernel.org, linux-mm@kvack.org, John Hubbard , Dan Williams , Ross Zwisler Subject: Re: [HMM v15 01/16] mm/free_hot_cold_page: catch ZONE_DEVICE pages Message-ID: <20170109091952.GA9655@localhost.localdomain> References: <1483721203-1678-1-git-send-email-jglisse@redhat.com> <1483721203-1678-2-git-send-email-jglisse@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <1483721203-1678-2-git-send-email-jglisse@redhat.com> User-Agent: Mutt/1.7.1 (2016-10-04) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Jan 06, 2017 at 11:46:28AM -0500, Jérôme Glisse wrote: > Catch page from ZONE_DEVICE in free_hot_cold_page(). This should never > happen as ZONE_DEVICE page must always have an elevated refcount. > > This is safety-net to catch any refcounting issues in a sane way for any > ZONE_DEVICE pages. > > Signed-off-by: Jérôme Glisse > Cc: Dan Williams > Cc: Ross Zwisler > --- > mm/page_alloc.c | 10 ++++++++++ > 1 file changed, 10 insertions(+) > > diff --git a/mm/page_alloc.c b/mm/page_alloc.c > index 1c24112..355beb4 100644 > --- a/mm/page_alloc.c > +++ b/mm/page_alloc.c > @@ -2445,6 +2445,16 @@ void free_hot_cold_page(struct page *page, bool cold) > unsigned long pfn = page_to_pfn(page); > int migratetype; > > + /* > + * This should never happen ! Page from ZONE_DEVICE always must have an > + * active refcount. Complain about it and try to restore the refcount. > + */ > + if (is_zone_device_page(page)) { > + VM_BUG_ON_PAGE(is_zone_device_page(page), page); This can be VM_BUG_ON_PAGE(1, page), hopefully the compiler does the right thing here. I suspect this should be a BUG_ON, independent of CONFIG_DEBUG_VM > + page_ref_inc(page); > + return; > + } > + Balbir Singh.