The patch titled fbcon: don't draw cursor when it's disabled has been added to the -mm tree. Its filename is fbcon-dont-draw-cursor-when-its-disabled.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: fbcon: don't draw cursor when it's disabled From: Michal Januszewski <spock@xxxxxxxxxx> When the cursor and echo are disabled on the current console, pressing a key will cause a black rectangle to be painted in the cursor's position. Fix this by not touching the framebuffer in fbcon_cursor() when the cursor is off. Signed-off-by: Michal Januszewski <spock@xxxxxxxxxx> Cc: "Antonino A. Daplas" <adaplas@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/video/console/fbcon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/video/console/fbcon.c~fbcon-dont-draw-cursor-when-its-disabled drivers/video/console/fbcon.c --- a/drivers/video/console/fbcon.c~fbcon-dont-draw-cursor-when-its-disabled +++ a/drivers/video/console/fbcon.c @@ -1305,7 +1305,7 @@ static void fbcon_cursor(struct vc_data int y; int c = scr_readw((u16 *) vc->vc_pos); - if (fbcon_is_inactive(vc, info)) + if (fbcon_is_inactive(vc, info) || vc->vc_deccm != 1) return; ops->cursor_flash = (mode == CM_ERASE) ? 0 : 1; _ Patches currently in -mm which might be from spock@xxxxxxxxxx are vt-fix-potential-race-in-vt_waitactive-handler.patch fbcon-dont-draw-cursor-when-its-disabled.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html