From: Anton Ivanov <anton.iva...@cambridgegreys.com> Run JSON RPC every time there is a backlog and not only if backlog was created on this iteration.
Signed-off-by: Anton Ivanov <anton.iva...@cambridgegreys.com> --- lib/jsonrpc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/jsonrpc.c b/lib/jsonrpc.c index ed748dbde..fc354e517 100644 --- a/lib/jsonrpc.c +++ b/lib/jsonrpc.c @@ -266,7 +266,7 @@ jsonrpc_send(struct jsonrpc *rpc, struct jsonrpc_msg *msg) rpc->output_count, rpc->backlog); } - if (rpc->backlog == length) { + if (rpc->backlog >= length) { jsonrpc_run(rpc); } return rpc->status; -- 2.20.1 _______________________________________________ dev mailing list d...@openvswitch.org https://mail.openvswitch.org/mailman/listinfo/ovs-dev