Re: [PATCH net-next] tcp: tcp_init_buffer_space can be static

2020-05-29 Thread David Miller
From: Florian Westphal Date: Fri, 29 May 2020 00:01:52 +0200 > As of commit 98fa6271cfcb > ("tcp: refactor setting the initial congestion window") this is called > only from tcp_input.c, so it can be static. > > Signed-off-by: Florian Westphal Applied, thanks Florian.

Re: [PATCH net-next] tcp: tcp_init_buffer_space can be static

2020-05-28 Thread Eric Dumazet
On 5/28/20 3:01 PM, Florian Westphal wrote: > As of commit 98fa6271cfcb > ("tcp: refactor setting the initial congestion window") this is called > only from tcp_input.c, so it can be static. > > Signed-off-by: Florian Westphal Reviewed-by: Eric Dumazet

[PATCH net-next] tcp: tcp_init_buffer_space can be static

2020-05-28 Thread Florian Westphal
As of commit 98fa6271cfcb ("tcp: refactor setting the initial congestion window") this is called only from tcp_input.c, so it can be static. Signed-off-by: Florian Westphal --- include/net/tcp.h| 1 - net/ipv4/tcp_input.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/