[ovs-dev] [PATCH] jsonrpc: increase input buffer size from 512 to 4096

Mark Michelson mmichels at redhat.com
Wed Nov 6 17:02:20 UTC 2019


Acked-by: Mark Michelson <mmichels at redhat.com>

On 11/6/19 4:19 AM, Lorenzo Bianconi wrote:
> 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 <lorenzo.bianconi at redhat.com>
> ---
>   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. */
> 



More information about the dev mailing list