Re: [PATCH] mm/debug: Change BUG_ON() crashes to survivable WARN_ON() warnings

From: Linus Torvalds
Date: Thu Sep 07 2017 - 16:51:34 EST


On Thu, Sep 7, 2017 at 12:01 AM, Ingo Molnar <mingo@xxxxxxxxxx> wrote:
>
> On a related note, this bug could have been more debuggable I think.
> Could we _please_ change VM_BUG_ON() to WARN_ON() or such?

I think it should be WARN_ON_ONCE(), or at least rate-limited some way.

Because once you have one of the VM bugs, they tend to repeat.

(We had a discussion long ago about making the "ONCE" behavior
actually be "once in a blue moon", and just mean that you warn at most
once every five minutes or something like that. Because the "once"
behavior has also resulted in people missing bugs, because the machine
has been up a long time, and maybe you got a warning at boot time, but
then five days later something fails silently again).

Also, should you do a "dump_vma()" if you then don't give a call stack
because you already did it earlier? So the rate limiting would need to
cover that part too, methinks.

Linus