]> git.baikalelectronics.ru Git - kernel.git/commit
vt: make vt_console_print() compatible with the unicode screen buffer
authorNicolas Pitre <nicolas.pitre@linaro.org>
Wed, 9 Jan 2019 03:54:59 +0000 (22:54 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 18 Jan 2019 12:42:58 +0000 (13:42 +0100)
commitec1dc47e8d89d06eda6053da5a52d533e520290e
treef28f5f5acce74bbe56e448b7ac378b15d09eebf7
parent63148f7b4989ce789a511768b6e07c81a8560a90
vt: make vt_console_print() compatible with the unicode screen buffer

When kernel messages are printed to the console, they appear blank on
the unicode screen. This is because vt_console_print() is lacking a call
to vc_uniscr_putc(). However the later function assumes vc->vc_x is
always up to date when called, which is not the case here as
vt_console_print() uses it to mark the beginning of the display update.

This patch reworks (and simplifies) vt_console_print() so that vc->vc_x
is always valid and keeps the start of display update in a local variable
instead, which finally allows for adding the missing vc_uniscr_putc()
call.

Signed-off-by: Nicolas Pitre <nico@linaro.org>
Cc: stable@vger.kernel.org # v4.19+
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/vt/vt.c