Re: [PATCH net-next,v3] tcp: Set pingpong threshold via sysctl

2023-10-16 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net-next.git (main) by Jakub Kicinski : On Wed, 11 Oct 2023 13:30:44 -0700 you wrote: > TCP pingpong threshold is 1 by default. But some applications, like SQL DB > may prefer a higher pingpong threshold to activate delayed acks in quick > ack mode for bett

Re: [PATCH net-next,v3] tcp: Set pingpong threshold via sysctl

2023-10-16 Thread Kuniyuki Iwashima
From: Haiyang Zhang Date: Wed, 11 Oct 2023 13:30:44 -0700 > TCP pingpong threshold is 1 by default. But some applications, like SQL DB > may prefer a higher pingpong threshold to activate delayed acks in quick > ack mode for better performance. > > The pingpong threshold and related code were cha

Re: [PATCH net-next,v3] tcp: Set pingpong threshold via sysctl

2023-10-16 Thread Neal Cardwell
On Wed, Oct 11, 2023 at 4:31 PM Haiyang Zhang wrote: > > TCP pingpong threshold is 1 by default. But some applications, like SQL DB > may prefer a higher pingpong threshold to activate delayed acks in quick > ack mode for better performance. > > The pingpong threshold and related code were changed

Re: [PATCH net-next,v3] tcp: Set pingpong threshold via sysctl

2023-10-16 Thread Eric Dumazet
On Wed, Oct 11, 2023 at 10:31 PM Haiyang Zhang wrote: > > TCP pingpong threshold is 1 by default. But some applications, like SQL DB > may prefer a higher pingpong threshold to activate delayed acks in quick > ack mode for better performance. > ... > > diff --git a/net/ipv4/tcp_output.c b/net/ip

Re: [PATCH net-next,v3] tcp: Set pingpong threshold via sysctl

2023-10-16 Thread Simon Horman
On Wed, Oct 11, 2023 at 01:30:44PM -0700, Haiyang Zhang wrote: > TCP pingpong threshold is 1 by default. But some applications, like SQL DB > may prefer a higher pingpong threshold to activate delayed acks in quick > ack mode for better performance. > > The pingpong threshold and related code were