Hi Michael, On 2025-05-25 20:15, Michael Tokarev wrote: > On 21.05.2025 16:52, Juraj Marcin wrote: > > From: Juraj Marcin <jmar...@redhat.com> > > > > Commit aec21d3175 (qapi: Add InetSocketAddress member keep-alive) > > introduces the keep-alive flag, but this flag is not copied together > > with other options in qio_dns_resolver_lookup_sync_inet(). > > > > This patch fixes this issue and also prevents future ones by copying the > > entire structure first and only then overriding a few attributes that > > need to be different. > > > > Fixes: aec21d31756c (qapi: Add InetSocketAddress member keep-alive) > > Signed-off-by: Juraj Marcin <jmar...@redhat.com> > > Reviewed-by: Daniel P. Berrangé <berra...@redhat.com> > > Is this a qemu-stable material?
it isn't necessary to backport it to stable. `qio_dns_resolver_lookup_sync_inet()` is used only with server-side sockets and the keep-alive flag¸ which is the only one not copied there, is not supported on server-side inet sockets without other patches in this series. In case you went ahead and included it in your stable tree already, you can keep it there. Best regards, Juraj Marcin > > Thanks, > > /mjt >