From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754374AbcBCO6s (ORCPT ); Wed, 3 Feb 2016 09:58:48 -0500 Received: from mail-wm0-f44.google.com ([74.125.82.44]:35343 "EHLO mail-wm0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751947AbcBCO6q (ORCPT ); Wed, 3 Feb 2016 09:58:46 -0500 Date: Wed, 3 Feb 2016 15:58:44 +0100 From: Michal Hocko To: "Kirill A. Shutemov" Cc: Andrew Morton , Dmitry Vyukov , Vlastimil Babka , David Rientjes , Naoya Horiguchi , linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: [PATCHv2 2/2] mm: downgrade VM_BUG in isolate_lru_page() to warning Message-ID: <20160203145844.GJ6757@dhcp22.suse.cz> References: <1454430061-116955-1-git-send-email-kirill.shutemov@linux.intel.com> <1454430061-116955-3-git-send-email-kirill.shutemov@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1454430061-116955-3-git-send-email-kirill.shutemov@linux.intel.com> 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 On Tue 02-02-16 19:21:01, Kirill A. Shutemov wrote: > Calling isolate_lru_page() is wrong and shouldn't happen, but it not > nessesary fatal: the page just will not be isolated if it's not on LRU. > > Let's downgrade the VM_BUG_ON_PAGE() to WARN_RATELIMIT(). This will trigger for !CONFIG_DEBUG_VM as well which I am not sure is necessary. I guess isolate_lru_page is not such a hot path so this would be acceptable. > Signed-off-by: Kirill A. Shutemov Anyway Acked-by: Michal Hocko > --- > mm/vmscan.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/mm/vmscan.c b/mm/vmscan.c > index eb3dd37ccd7c..71b1c29948db 100644 > --- a/mm/vmscan.c > +++ b/mm/vmscan.c > @@ -1443,7 +1443,7 @@ int isolate_lru_page(struct page *page) > int ret = -EBUSY; > > VM_BUG_ON_PAGE(!page_count(page), page); > - VM_BUG_ON_PAGE(PageTail(page), page); > + WARN_RATELIMIT(PageTail(page), "trying to isolate tail page"); > > if (PageLRU(page)) { > struct zone *zone = page_zone(page); > -- > 2.7.0 > -- Michal Hocko SUSE Labs