aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/tty
diff options
context:
space:
mode:
authorMikulas Patocka <mpatocka@redhat.com>2018-10-23 11:28:28 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-11-08 03:36:40 -0800
commit943210ba807ec50aafa2fa7b13bd6d36a478969b (patch)
tree5ff3d23f1a708481fa6ffa9c5974ccca2a3f1927 /drivers/tty
parentserial: sh-sci: Fix receive on SCIFA/SCIFB variants with DMA (diff)
downloadlinux-dev-943210ba807ec50aafa2fa7b13bd6d36a478969b.tar.xz
linux-dev-943210ba807ec50aafa2fa7b13bd6d36a478969b.zip
vt: fix broken display when running aptitude
If you run aptitude on framebuffer console, the display is corrupted. The corruption is caused by the commit d8ae7242. The patch adds "offset" to "start" when calling scr_memsetw, but it forgets to do the same addition on a subsequent call to do_update_region. Signed-off-by: Mikulas Patocka <mpatocka@redhat.com> Fixes: d8ae72427187 ("vt: preserve unicode values corresponding to screen characters") Reviewed-by: Nicolas Pitre <nico@linaro.org> Cc: stable@vger.kernel.org # 4.19 Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty')
-rw-r--r--drivers/tty/vt/vt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/vt/vt.c b/drivers/tty/vt/vt.c
index 5f1183b0b89d..476ec4b1b86c 100644
--- a/drivers/tty/vt/vt.c
+++ b/drivers/tty/vt/vt.c
@@ -1551,7 +1551,7 @@ static void csi_K(struct vc_data *vc, int vpar)
scr_memsetw(start + offset, vc->vc_video_erase_char, 2 * count);
vc->vc_need_wrap = 0;
if (con_should_update(vc))
- do_update_region(vc, (unsigned long) start, count);
+ do_update_region(vc, (unsigned long)(start + offset), count);
}
static void csi_X(struct vc_data *vc, int vpar) /* erase the following vpar positions */