Patches Updated For Linux To Enjoy Consoles Running At Full-Speed

Written by Michael Larabel in Linux Kernel on 20 April 2022 at 05:23 AM EDT. 13 Comments
LINUX KERNEL
As part of the long ongoing work to improve Linux's printk() code, there has been work to allow for threaded console printing and allowing consoles to run at full-speed. That work is still ongoing but Tuesday saw the third iteration of those printk patches posted.

Linutronix developer John Ogness sums up this printk work as:
This is v3 of a series to implement a kthread for each registered console. The kthreads locklessly retrieve the records from the printk ringbuffer and also do not cause any lock contention between each other. This allows consoles to run at full speed. For example, a netconsole is able to dump records much faster than a serial or vt console. Also, during normal operation, printk() callers are completely decoupled from console printing.

There are situations where kthread printing is not sufficient. For example, during panic situations, where the kthreads may not get a chance to schedule. In such cases, the current method of attempting to print directly within the printk() caller context is used.

Ogness did note that this work will not improve the reliability of console printing but ultimately is just about the performance aspect / not blocking other consoles. See the patch series for more details if this improvement is of interest to you.
Related News
About The Author
Michael Larabel

Michael Larabel is the principal author of Phoronix.com and founded the site in 2004 with a focus on enriching the Linux hardware experience. Michael has written more than 20,000 articles covering the state of Linux hardware support, Linux performance, graphics drivers, and other topics. Michael is also the lead developer of the Phoronix Test Suite, Phoromatic, and OpenBenchmarking.org automated benchmarking software. He can be followed via Twitter, LinkedIn, or contacted via MichaelLarabel.com.

Popular News This Week