* [PATCH] io: Stop appending -listen to net listeners
@ 2023-09-04 14:41 Fabiano Rosas
2023-09-08 10:09 ` Daniel P. Berrangé
0 siblings, 1 reply; 2+ messages in thread
From: Fabiano Rosas @ 2023-09-04 14:41 UTC (permalink / raw)
To: qemu-devel; +Cc: Daniel P. Berrangé
All callers of qio_net_listener_set_name() already add some sort of
"listen" or "listener" suffix.
For intance, we currently have "migration-socket-listener-listen" and
"vnc-listen-listen" as ioc names.
Signed-off-by: Fabiano Rosas <farosas@suse.de>
---
io/net-listener.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/io/net-listener.c b/io/net-listener.c
index 1c984d69c6..47405965a6 100644
--- a/io/net-listener.c
+++ b/io/net-listener.c
@@ -109,9 +109,7 @@ void qio_net_listener_add(QIONetListener *listener,
QIOChannelSocket *sioc)
{
if (listener->name) {
- char *name = g_strdup_printf("%s-listen", listener->name);
- qio_channel_set_name(QIO_CHANNEL(sioc), name);
- g_free(name);
+ qio_channel_set_name(QIO_CHANNEL(sioc), listener->name);
}
listener->sioc = g_renew(QIOChannelSocket *, listener->sioc,
--
2.35.3
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-09-08 10:10 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-04 14:41 [PATCH] io: Stop appending -listen to net listeners Fabiano Rosas
2023-09-08 10:09 ` Daniel P. Berrangé
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).