diff options
author | Jon Maloy <jon.maloy@ericsson.com> | 2012-11-27 06:15:29 -0500 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2012-12-07 17:23:18 -0500 |
commit | e643df156ade104b0430588562d25b8638683fc1 (patch) | |
tree | a4a3f3ec4e911e22aacbd9a727990415cafdfcf5 | |
parent | 9da3d475874f4da49057767913af95ce01063ba3 (diff) | |
download | linux-3.10-e643df156ade104b0430588562d25b8638683fc1.tar.gz linux-3.10-e643df156ade104b0430588562d25b8638683fc1.tar.bz2 linux-3.10-e643df156ade104b0430588562d25b8638683fc1.zip |
tipc: change sk_receive_queue upper limit
The sk_recv_queue upper limit for connectionless sockets has empirically
turned out to be too low. When we double the current limit we get much
fewer rejected messages and no noticable negative side-effects.
Signed-off-by: Jon Maloy <jon.maloy@ericsson.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
-rw-r--r-- | net/tipc/socket.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/tipc/socket.c b/net/tipc/socket.c index 848be692cb4..f553fdecc1d 100644 --- a/net/tipc/socket.c +++ b/net/tipc/socket.c @@ -1,7 +1,7 @@ /* * net/tipc/socket.c: TIPC socket API * - * Copyright (c) 2001-2007, Ericsson AB + * Copyright (c) 2001-2007, 2012 Ericsson AB * Copyright (c) 2004-2008, 2010-2012, Wind River Systems * All rights reserved. * @@ -43,7 +43,7 @@ #define SS_LISTENING -1 /* socket is listening */ #define SS_READY -2 /* socket is connectionless */ -#define OVERLOAD_LIMIT_BASE 5000 +#define OVERLOAD_LIMIT_BASE 10000 #define CONN_TIMEOUT_DEFAULT 8000 /* default connect timeout = 8s */ struct tipc_sock { |