Re: [PATCH] net/rds: correct socket tunable error in rds_tcp_tune()

2021-03-19 Thread Matthew Wilcox
On Wed, Mar 17, 2021 at 08:52:04AM -0600, William Kucharski wrote: > Correct an error where setting /proc/sys/net/rds/tcp/rds_tcp_rcvbuf would > instead modify the socket's sk_sndbuf and would leave sk_rcvbuf untouched. > > Signed-off-by: William Kucharski Looks like a pretty clear copy-n-paste

[PATCH] net/rds: correct socket tunable error in rds_tcp_tune()

2021-03-17 Thread William Kucharski
Correct an error where setting /proc/sys/net/rds/tcp/rds_tcp_rcvbuf would instead modify the socket's sk_sndbuf and would leave sk_rcvbuf untouched. Signed-off-by: William Kucharski --- net/rds/tcp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/rds/tcp.c b/net/rds/tcp.

Re: [PATCH] net/rds: correct socket tunable error in rds_tcp_tune()

2021-03-17 Thread Santosh Shilimkar
(Previous reply bounced due to format so re-sending to the list for archives) On Mar 17, 2021, at 7:52 AM, William Kucharski wrote: > > Correct an error where setting /proc/sys/net/rds/tcp/rds_tcp_rcvbuf would > instead modify the socket's sk_sndbuf and would leave sk_rcvbuf untouched. > > Sig