Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

[PATCH] fbcon: Fix screen artifacts when moving cursor

When moving the cursor by writing to /dev/vcs*, the old cursor image is not
erased. Fix by hiding the cursor first before moving the cursor to the new
position.

Signed-off-by: Antonino Daplas <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by

Antonino A. Daplas and committed by
Linus Torvalds
9477e260 fa385bef

+1
+1
drivers/char/vt.c
··· 3213 3213 3214 3214 void putconsxy(struct vc_data *vc, unsigned char *p) 3215 3215 { 3216 + hide_cursor(vc); 3216 3217 gotoxy(vc, p[0], p[1]); 3217 3218 set_cursor(vc); 3218 3219 }