Increase jsonrpc input buffer size from 512 to 4096 bytes in order to reduce the syscall overhead when downloading huge db size
Signed-off-by: Lorenzo Bianconi <[email protected]> --- lib/jsonrpc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/jsonrpc.c b/lib/jsonrpc.c index b9619b822..ed748dbde 100644 --- a/lib/jsonrpc.c +++ b/lib/jsonrpc.c @@ -43,7 +43,7 @@ struct jsonrpc { /* Input. */ struct byteq input; - uint8_t input_buffer[512]; + uint8_t input_buffer[4096]; struct json_parser *parser; /* Output. */ -- 2.21.0 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
