diff options
author | David Howells <dhowells@redhat.com> | 2018-07-23 17:18:37 +0100 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2018-08-01 13:28:23 +0100 |
commit | 4075295ab87670e33eaf98389e319ce84c54c8e4 (patch) | |
tree | 6754c1d28fe81092fa76e2a9043610774ffe5cd4 /net/rxrpc | |
parent | 4272d3034e69aea6e17085ba285d14f5824b430d (diff) | |
download | linux-stable-4075295ab87670e33eaf98389e319ce84c54c8e4.tar.gz linux-stable-4075295ab87670e33eaf98389e319ce84c54c8e4.tar.bz2 linux-stable-4075295ab87670e33eaf98389e319ce84c54c8e4.zip |
rxrpc: Increase the size of a call's Rx window
Increase the size of a call's Rx window from 32 to 63 - ie. one less than
the size of the ring buffer. This makes large data transfers perform
better when the Tx window on the other side is around 64 (as is the case
with Auristor's YFS fileserver).
If the server window size is ~32 or smaller, this should make no
difference.
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'net/rxrpc')
-rw-r--r-- | net/rxrpc/ar-internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rxrpc/ar-internal.h b/net/rxrpc/ar-internal.h index 7eee955a768a..e791d35ee34b 100644 --- a/net/rxrpc/ar-internal.h +++ b/net/rxrpc/ar-internal.h @@ -589,7 +589,7 @@ struct rxrpc_call { */ #define RXRPC_RXTX_BUFF_SIZE 64 #define RXRPC_RXTX_BUFF_MASK (RXRPC_RXTX_BUFF_SIZE - 1) -#define RXRPC_INIT_RX_WINDOW_SIZE 32 +#define RXRPC_INIT_RX_WINDOW_SIZE 63 struct sk_buff **rxtx_buffer; u8 *rxtx_annotations; #define RXRPC_TX_ANNO_ACK 0 |