Happy Holidays: 21+ years in providing Linux hardware reviews with more than 5,500 original reviews / featured multi-page articles and more than 48,400 original news articles. 99% of the content written by one individual. If you enjoy Phoronix.com, consider joining Phoronix Premium. This week is the Cyber Week promotion to help support all of our Linux/open-source hardware and software operations. Thank you for your consideration and support this holiday season.
Among the big flow of pull requests today for this first day of the Linux 6.19 merge window are some core kernel bug handling improvements.
With the batch of pull requests sent in this morning by Ingo Molnar are some core kernel bug handling infrastructure improvements. In addition to improving the Linux kernel’s WARN() functionality, there is a new CONFIG_DEBUG_BUGVERBOSE_DETAILED Kconfig option being added.
As implied by the name, CONFIG_DEBUG_BUGVERBOSE_DETAILED allows for more detailed/verbose bug reporting. In particular, DEBUG_BUGVERBOSE_DETAILED allows for more informative reports from the WARN_ON() (and WARN_ON_ONCE()) usage. The kernel’s WARN_ON() macro is used for debugging and error checking when the passed condition evaluates to true. Enabling this option will now include the condition string of the warning in addition to the file name and line number.
These more detailed debug messages aren’t enabled by default since it comes with a cost of around 100K of memory.
That’s the main bug reporting improvement highlight of this pull request.
