From: Marc-André Lureau Date: Thu, 17 Jan 2019 11:43:56 +0000 (+0400) Subject: slirp: remove slirp_instances list X-Git-Tag: v4.0.0-rc0~107^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6e513a78ea48af788c8b4302fc11b2994d650e5f;p=thirdparty%2Fqemu.git slirp: remove slirp_instances list Now that polling is done per-instance, we don't need a global list of slirp instances. Signed-off-by: Marc-André Lureau Signed-off-by: Samuel Thibault --- diff --git a/slirp/slirp.c b/slirp/slirp.c index 3a8d1bc4599..b37dd343822 100644 --- a/slirp/slirp.c +++ b/slirp/slirp.c @@ -48,9 +48,6 @@ static const uint8_t special_ethaddr[ETH_ALEN] = { unsigned curtime; -static QTAILQ_HEAD(, Slirp) slirp_instances = - QTAILQ_HEAD_INITIALIZER(slirp_instances); - static struct in_addr dns_addr; #ifndef _WIN32 static struct in6_addr dns6_addr; @@ -333,7 +330,6 @@ Slirp *slirp_init(int restricted, bool in_enabled, struct in_addr vnetwork, #ifdef WITH_QEMU slirp_state_register(slirp); #endif - QTAILQ_INSERT_TAIL(&slirp_instances, slirp, entry); return slirp; } @@ -348,7 +344,6 @@ void slirp_cleanup(Slirp *slirp) g_free(e); } - QTAILQ_REMOVE(&slirp_instances, slirp, entry); #ifdef WITH_QEMU slirp_state_unregister(slirp); #endif