kdb,vt_console: Fix missed data due to pager overruns
commita150793f1f0866effaba2521fdf06130aab60d35
authorJason Wessel <jason.wessel@windriver.com>
Mon, 27 Aug 2012 03:37:03 +0000 (26 22:37 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 21 Oct 2012 16:32:41 +0000 (21 09:32 -0700)
treed198add65bf29a92ff79c02a9911ae3a8a320961
parent774cb096b98e8af73bd9f3b9b82abe8786289929
kdb,vt_console: Fix missed data due to pager overruns

commit 17b572e82032bc246324ce136696656b66d4e3f1 upstream.

It is possible to miss data when using the kdb pager.  The kdb pager
does not pay attention to the maximum column constraint of the screen
or serial terminal.  This result is not incrementing the shown lines
correctly and the pager will print more lines that fit on the screen.
Obviously that is less than useful when using a VGA console where you
cannot scroll back.

The pager will now look at the kdb_buffer string to see how many
characters are printed.  It might not be perfect considering you can
output ASCII that might move the cursor position, but it is a
substantially better approximation for viewing dmesg and trace logs.

This also means that the vt screen needs to set the kdb COLUMNS
variable.

Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/vt/vt.c
kernel/debug/kdb/kdb_io.c