From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753535AbcJEVNw (ORCPT ); Wed, 5 Oct 2016 17:13:52 -0400 Received: from wtarreau.pck.nerim.net ([62.212.114.60]:35331 "EHLO 1wt.eu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751288AbcJEVNu (ORCPT ); Wed, 5 Oct 2016 17:13:50 -0400 Date: Wed, 5 Oct 2016 23:09:00 +0200 From: Willy Tarreau To: Linus Torvalds Cc: Paul Gortmaker , Johannes Weiner , Andrew Morton , Antonio SJ Musumeci , Miklos Szeredi , Linux Kernel Mailing List , stable Subject: Re: BUG_ON() in workingset_node_shadows_dec() triggers Message-ID: <20161005210900.GB8116@1wt.eu> References: <20161005054407.GC7297@1wt.eu> <20161005190604.GA8116@1wt.eu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.6.0 (2016-04-01) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Oct 05, 2016 at 12:18:51PM -0700, Linus Torvalds wrote: > Quite frankly, I wouldn't do a sed-script pass to actually change > existing users. I'd just change how the BUG() implementation itself > works. Not make it a direct WARN_ON(), but perhaps something like > > - use WARN_ON() with a global rate limiter (we do *not* want BUG > cascades, but re-enable the warning after a few minutes) That's interesting, I had exactly this discussion at kernel recipes last week with someone complaining that when warnings scroll, you only see the last ones while only the first one is useful. I guess in most situations we don't even need a rate limiter, just print a single dump and wait 2 minutes or so for the person in front of the screen to have the time to take a photo. > - have some kernel command line option for the server people to allow > them to just force a reboot for it Good point for not doing the sed. > Hmm? > > Anybody want to play with it? Many people will be much more efficient than me at doing it and even testing it so I won't volunteer here. Willy