提交 ad2b3fdd 编写于 作者: D Daniel P. Berrangé

remote: use a separate connection for nwfilter APIs

Reviewed-by: NJohn Ferlan <jferlan@redhat.com>
Signed-off-by: NDaniel P. Berrangé <berrange@redhat.com>
上级 3ebf8f5b
......@@ -77,6 +77,7 @@ struct daemonClientPrivate {
virConnectPtr interfaceConn;
virConnectPtr networkConn;
virConnectPtr nodedevConn;
virConnectPtr nwfilterConn;
daemonClientStreamPtr streams;
};
......
......@@ -1751,6 +1751,8 @@ void remoteClientFree(void *data)
virConnectClose(priv->networkConn);
if (priv->nodedevConn)
virConnectClose(priv->nodedevConn);
if (priv->nwfilterConn)
virConnectClose(priv->nwfilterConn);
VIR_FREE(priv);
}
......@@ -1826,6 +1828,7 @@ remoteDispatchConnectOpen(virNetServerPtr server ATTRIBUTE_UNUSED,
priv->interfaceConn = virObjectRef(priv->conn);
priv->networkConn = virObjectRef(priv->conn);
priv->nodedevConn = virObjectRef(priv->conn);
priv->nwfilterConn = virObjectRef(priv->conn);
/* force update the @readonly attribute which was inherited from the
* virNetServerService object - this is important for sockets that are RW
......
......@@ -134,6 +134,9 @@ sub get_conn_arg {
if ($type =~ /remote_nonnull_node_device/) {
return "priv->nodedevConn";
}
if ($type =~ /remote_nonnull_nwfilter/) {
return "priv->nwfilterConn";
}
}
# This is for the few virConnect APIs that
......@@ -148,6 +151,9 @@ sub get_conn_arg {
if ($proc =~ /Node.*Device/) {
return "priv->nodedevConn";
}
if ($proc =~ /Connect.*NWFilter/) {
return "priv->nwfilterConn";
}
return "priv->conn";
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册