mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-03-17 12:34:01 +00:00
[DLM] lowcomms: Do not muck with sysctl_rmem_max.
Use SO_RCVBUFFORCE instead. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
c3e9a353d8
commit
df61c95262
1 changed files with 1 additions and 5 deletions
|
@ -1062,7 +1062,7 @@ static int sctp_listen_for_all(void)
|
|||
subscribe.sctp_shutdown_event = 1;
|
||||
subscribe.sctp_partial_delivery_event = 1;
|
||||
|
||||
result = kernel_setsockopt(sock, SOL_SOCKET, SO_RCVBUF,
|
||||
result = kernel_setsockopt(sock, SOL_SOCKET, SO_RCVBUFFORCE,
|
||||
(char *)&bufsize, sizeof(bufsize));
|
||||
if (result)
|
||||
log_print("Error increasing buffer space on socket %d", result);
|
||||
|
@ -1454,10 +1454,6 @@ int dlm_lowcomms_start(void)
|
|||
if (!con_cache)
|
||||
goto out;
|
||||
|
||||
/* Set some sysctl minima */
|
||||
if (sysctl_rmem_max < NEEDED_RMEM)
|
||||
sysctl_rmem_max = NEEDED_RMEM;
|
||||
|
||||
/* Start listening */
|
||||
if (dlm_config.ci_protocol == 0)
|
||||
error = tcp_listen_for_all();
|
||||
|
|
Loading…
Add table
Reference in a new issue