Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f700d6e5 authored by Stefano Stabellini's avatar Stefano Stabellini Committed by Linus Torvalds
Browse files

vt: do not update when the console is blanked



vt.c DO_UPDATE macro checks if the console is visible but doesn't check if
the console is blanked.

In fact updating fbcon while the console is blanked is not only
unnecessary but can even cause screen corruption.

Therefore I am adding a simple check on console_blanked in DO_UPDATE.

Signed-off-by: default avatarStefano Stabellini <stefano.stabellini@eu.citrix.com>
Cc: Krzysztof Helt <krzysztof.h1@poczta.fm>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent e0426e6a
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -261,7 +261,7 @@ static void notify_update(struct vc_data *vc)
#ifdef VT_BUF_VRAM_ONLY
#ifdef VT_BUF_VRAM_ONLY
#define DO_UPDATE(vc)	0
#define DO_UPDATE(vc)	0
#else
#else
#define DO_UPDATE(vc)	CON_IS_VISIBLE(vc)
#define DO_UPDATE(vc)	(CON_IS_VISIBLE(vc) && !console_blanked)
#endif
#endif


static inline unsigned short *screenpos(struct vc_data *vc, int offset, int viewed)
static inline unsigned short *screenpos(struct vc_data *vc, int offset, int viewed)