ui/vnc: Do not use console_select()
authorAkihiko Odaki <akihiko.odaki@daynix.com>
Tue, 19 Mar 2024 03:08:40 +0000 (12:08 +0900)
committerMarc-André Lureau <marcandre.lureau@redhat.com>
Wed, 20 Mar 2024 06:27:54 +0000 (10:27 +0400)
commitd4c199566f6fa5de4afa344712462cfd322de9d0
treead3c22a1aedc08ddfbd901f2b01e90d215b39855
parent271a197425528f4448b3d351be25995abe901374
ui/vnc: Do not use console_select()

console_select() is shared by other displays and a console_select() call
from one of them triggers console switching also in ui/curses,
circumventing key state reinitialization that needs to be performed in
preparation and resulting in stuck keys.

Use its internal state to track the current active console to prevent
such a surprise console switch.

Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20240319-console-v2-2-3fd6feef321a@daynix.com>
include/ui/console.h
include/ui/kbd-state.h
ui/console.c
ui/kbd-state.c
ui/vnc.c