Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 13 Dec 2012 08:47:45 +0200
From:      Andriy Gapon <avg@FreeBSD.org>
To:        Adrian Chadd <adrian@FreeBSD.org>
Cc:        svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, Alfred Perlstein <alfred@FreeBSD.org>, src-committers@FreeBSD.org, John Baldwin <jhb@FreeBSD.org>
Subject:   Re: svn commit: r244112 - head/sys/kern
Message-ID:  <50C97A11.10409@FreeBSD.org>
In-Reply-To: <CAJ-Vmo=sP0uojVBM9MdY7jL%2BUZoN5mj%2Bim_MBdq9U%2B8uRuTv3A@mail.gmail.com>
References:  <201212110708.qBB78EWx025288@svn.freebsd.org> <201212121046.43706.jhb@freebsd.org> <CAJ-Vmo=U04GX%2BZyKuzXLwV%2BPpzU6_dm5BCmL=DWfsmhTVAR%2BsA@mail.gmail.com> <201212121658.49048.jhb@freebsd.org> <50C90567.8080406@FreeBSD.org> <CAJ-Vmo=sP0uojVBM9MdY7jL%2BUZoN5mj%2Bim_MBdq9U%2B8uRuTv3A@mail.gmail.com>

next in thread | previous in thread | raw e-mail | index | archive | help
on 13/12/2012 00:38 Adrian Chadd said the following:
> There are two parts to this;
> 
> * don't compile in invariants. Panics panic. Invariant conditions
> aren't checked. You end up with data corruption still if there are
> bugs.
> * compile in invariants. Panics panic. Invariant conditions are
> checked and immediately panic. You can't run this in production to get
> debugging info because our debugging info is "create a crash dump and
> reboot."
> 
> Now, the crash dump is great for us developers. But crap for say, a
> file server. If it's some very subtle issue that only occasionally
> pops up once a week and doesn't obviously screw with your data:
> 
> * you can enable invariants and get a crash dump each time - then us
> developers get lots of information, but the user experiences outages
> once a week;
> * they just give the hell up, disable invariants in production and
> occasionally hit odd issues they can't explain.
> 
> So now there's a third option:
> 
> * enable invariants, get told when you hit that condition, and continue running.
> 
> Now, we ship _right now_ generic with INVARIANTS disabled, because in
> theory the releases are supposed to be stable enough for us not to
> need the extra debugging information. That means that for those very
> occasional, very subtle bugs that invariants may catch, we don't have
> any way of getting told about them.
> 
> Now, enabling some alternative to panic() is a different story and not
> what's being addressed here.
> 
> HTH,

Let me see if it does...
So basically a violated assertion means that something has already gone wrong.
With assertions you catch that sooner and get full debug information and can fix
it.  Without assertions you crash anyway (in 99% cases), but later and get much
less useful information.
Now you have an option to crash later while having the worse performance and the
only benefit is a log message which may or may not be useful for debugging.

No, this doesn't help.



-- 
Andriy Gapon



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?50C97A11.10409>