From: Marc-André Lureau <marcandre.lur...@redhat.com> This message is an information rather than an error. Use a trace event instead.
This allows using reconnect in tests without extra error messages. Signed-off-by: Marc-André Lureau <marcandre.lur...@redhat.com> --- qemu-char.c | 4 ++-- trace-events | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/qemu-char.c b/qemu-char.c index 270819a..a944ee0 100644 --- a/qemu-char.c +++ b/qemu-char.c @@ -40,6 +40,7 @@ #include "io/channel-file.h" #include "io/channel-tls.h" #include "sysemu/replay.h" +#include "trace.h" #include <zlib.h> @@ -2639,8 +2640,7 @@ static void check_report_connect_error(CharDriverState *chr, TCPCharDriver *s = chr->opaque; if (!s->connect_err_reported) { - error_report("Unable to connect character device %s: %s", - chr->label, error_get_pretty(err)); + trace_char_socket_reconnect_error(chr->label, error_get_pretty(err)); s->connect_err_reported = true; } qemu_chr_socket_restart_timer(chr); diff --git a/trace-events b/trace-events index 996a77f..19e0a05 100644 --- a/trace-events +++ b/trace-events @@ -689,6 +689,9 @@ grlib_apbuart_readl_unknown(uint64_t addr) "addr 0x%"PRIx64 leon3_set_irq(int intno) "Set CPU IRQ %d" leon3_reset_irq(int intno) "Reset CPU IRQ %d" +# qemu-char.c +char_socket_reconnect_error(const char *label, const char *err) "Unable to connect character device %s: %s" + # spice-qemu-char.c spice_vmc_write(ssize_t out, int len) "spice wrottn %zd of requested %d" spice_vmc_read(int bytes, int len) "spice read %d of requested %d" -- 2.5.5