Scott Cheloha <[email protected]> wrote: > Is there any scenario where > > if (condition) > panic(); > > is preferable to > > KASSERT(condition); > > outside of function calls with side effects?
Definately, sometimes you want to use simple english language for the failure condition, rather than the relationship between kernel variables.
