From: "Volker Rümelin" <vr_qemu@t-online.de>
To: Gerd Hoffmann <kraxel@redhat.com>
Cc: "Marc-André Lureau" <marcandre.lureau@redhat.com>, qemu-devel@nongnu.org
Subject: [PATCH 3/3] ui/console: remove chardev frontend connected test
Date: Sun, 12 Sep 2021 14:52:03 +0200 [thread overview]
Message-ID: <20210912125203.7114-3-vr_qemu@t-online.de> (raw)
In-Reply-To: <23041f12-b405-7dbc-b098-e9c48802e29c@t-online.de>
The test if the chardev frontend is connected in
kbd_put_keysym_console() is redundant, because the call
to qemu_chr_be_can_write() in kbd_send_chars() tests
the connected condition again.
Remove the redundant test whether the chardev frontend
is connected.
Signed-off-by: Volker Rümelin <vr_qemu@t-online.de>
---
ui/console.c | 13 +++++--------
1 file changed, 5 insertions(+), 8 deletions(-)
diff --git a/ui/console.c b/ui/console.c
index 7b276bfc6c..a06442ed86 100644
--- a/ui/console.c
+++ b/ui/console.c
@@ -28,10 +28,11 @@
#include "qapi/error.h"
#include "qapi/qapi-commands-ui.h"
#include "qemu/fifo8.h"
+#include "qemu/main-loop.h"
#include "qemu/module.h"
#include "qemu/option.h"
#include "qemu/timer.h"
-#include "chardev/char-fe.h"
+#include "chardev/char.h"
#include "trace.h"
#include "exec/memory.h"
#include "io/channel-file.h"
@@ -1126,7 +1127,6 @@ static void kbd_send_chars(QemuConsole *s)
void kbd_put_keysym_console(QemuConsole *s, int keysym)
{
uint8_t buf[16], *q;
- CharBackend *be;
int c;
uint32_t free;
@@ -1170,12 +1170,9 @@ void kbd_put_keysym_console(QemuConsole *s, int keysym)
if (s->echo) {
vc_chr_write(s->chr, buf, q - buf);
}
- be = s->chr->be;
- if (be && be->chr_read) {
- free = fifo8_num_free(&s->out_fifo);
- fifo8_push_all(&s->out_fifo, buf, MIN(free, q - buf));
- kbd_send_chars(s);
- }
+ free = fifo8_num_free(&s->out_fifo);
+ fifo8_push_all(&s->out_fifo, buf, MIN(free, q - buf));
+ kbd_send_chars(s);
break;
}
}
--
2.31.1
next prev parent reply other threads:[~2021-09-12 12:54 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-09-12 12:50 [PATCH 0/3] ui/console: chardev backend improvements Volker Rümelin
2021-09-12 12:52 ` [PATCH 1/3] ui/console: replace QEMUFIFO with Fifo8 Volker Rümelin
2021-09-12 15:54 ` Marc-André Lureau
2021-09-12 17:58 ` Volker Rümelin
2021-09-12 18:34 ` Volker Rümelin
2021-09-12 21:21 ` Volker Rümelin
2021-09-12 12:52 ` [PATCH 2/3] ui/console: replace kbd_timer with chr_accept_input callback Volker Rümelin
2021-09-12 15:59 ` Marc-André Lureau
2021-09-12 12:52 ` Volker Rümelin [this message]
2021-09-12 16:34 ` [PATCH 3/3] ui/console: remove chardev frontend connected test Marc-André Lureau
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210912125203.7114-3-vr_qemu@t-online.de \
--to=vr_qemu@t-online.de \
--cc=kraxel@redhat.com \
--cc=marcandre.lureau@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).