From: Martin Kletzander Date: Thu, 7 May 2015 08:01:32 +0000 (+0200) Subject: rpc: Don't mix max_clients and max_workers in PostExecRestart X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=161b52662f493ba937d08989307620c56becb491;p=people%2Fliuw%2Flibxenctrl-split%2Flibvirt.git rpc: Don't mix max_clients and max_workers in PostExecRestart This only affected the servers that re-exec themselves, which is only virtlockd and it didn't do any mess, so this is mostly a clenaup. Signed-off-by: Martin Kletzander --- diff --git a/src/rpc/virnetserver.c b/src/rpc/virnetserver.c index 47d83baaf..b0612750b 100644 --- a/src/rpc/virnetserver.c +++ b/src/rpc/virnetserver.c @@ -484,7 +484,7 @@ virNetServerPtr virNetServerNewPostExecRestart(virJSONValuePtr object, goto error; } - if (!(srv = virNetServerNew(min_workers, max_clients, + if (!(srv = virNetServerNew(min_workers, max_workers, priority_workers, max_clients, max_anonymous_clients, keepaliveInterval, keepaliveCount,