[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v3 5/8] char-socket: Report TCP socket waiting as in
From: |
Alistair Francis |
Subject: |
[Qemu-devel] [PATCH v3 5/8] char-socket: Report TCP socket waiting as information |
Date: |
Tue, 11 Jul 2017 05:07:30 -0700 |
When QEMU is waiting for a TCP socket connection it reports that message as
an error. This isn't an error it is just information so let's change the
report to use info_report() instead.
Signed-off-by: Alistair Francis <address@hidden>
Reviewed-by: Thomas Huth <address@hidden>
Reviewed-by: Philippe Mathieu-Daudé <address@hidden>
---
chardev/char-socket.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/chardev/char-socket.c b/chardev/char-socket.c
index ccc499cfa1..a050a686ea 100644
--- a/chardev/char-socket.c
+++ b/chardev/char-socket.c
@@ -765,8 +765,8 @@ static int tcp_chr_wait_connected(Chardev *chr, Error
**errp)
* in TLS and telnet cases, only wait for an accepted socket */
while (!s->ioc) {
if (s->is_listen) {
- error_report("QEMU waiting for connection on: %s",
- chr->filename);
+ info_report("QEMU waiting for connection on: %s",
+ chr->filename);
qio_channel_set_blocking(QIO_CHANNEL(s->listen_ioc), true, NULL);
tcp_chr_accept(QIO_CHANNEL(s->listen_ioc), G_IO_IN, chr);
qio_channel_set_blocking(QIO_CHANNEL(s->listen_ioc), false, NULL);
--
2.11.0
- [Qemu-devel] [PATCH v3 0/8] Implement a warning_report function, Alistair Francis, 2017/07/11
- [Qemu-devel] [PATCH v3 1/8] util/qemu-error: Rename error_print_loc() to be more generic, Alistair Francis, 2017/07/11
- [Qemu-devel] [PATCH v3 2/8] error: Functions to report warnings and informational messages, Alistair Francis, 2017/07/11
- [Qemu-devel] [PATCH v3 5/8] char-socket: Report TCP socket waiting as information,
Alistair Francis <=
- [Qemu-devel] [PATCH v3 4/8] hw/i386: Improve some of the warning messages, Alistair Francis, 2017/07/11
- [Qemu-devel] [PATCH v3 3/8] Convert error_report() to warn_report(), Alistair Francis, 2017/07/11
- [Qemu-devel] [PATCH v3 7/8] Convert error_report*_err() to warn_report*_err(), Alistair Francis, 2017/07/11