tcp: Lower TCP_TAP_FRAMES to 32
Sending 64 frames in a batch looks quite bad when a duplicate ACK comes right at the beginning of it. Lowering this to 32 doesn't affect performance noticeably, with 16 the impact is more apparent. Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
This commit is contained in:
parent
f57c2a72e4
commit
c62490ffa8
1 changed files with 1 additions and 1 deletions
2
tcp.c
2
tcp.c
|
@ -353,7 +353,7 @@
|
||||||
#define MAX_TAP_CONNS (128 * 1024)
|
#define MAX_TAP_CONNS (128 * 1024)
|
||||||
#define MAX_SPLICE_CONNS (128 * 1024)
|
#define MAX_SPLICE_CONNS (128 * 1024)
|
||||||
|
|
||||||
#define TCP_TAP_FRAMES 64
|
#define TCP_TAP_FRAMES 32
|
||||||
|
|
||||||
#define PIPE_SIZE (1024 * 1024)
|
#define PIPE_SIZE (1024 * 1024)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue