aboutgitcodebugslistschat
path: root/tcp.c
diff options
context:
space:
mode:
authorLaurent Vivier <lvivier@redhat.com>2023-12-04 15:23:11 +0100
committerStefano Brivio <sbrivio@redhat.com>2023-12-27 19:31:25 +0100
commit6a348cb435ce05d9da5348246eff867774d150d6 (patch)
treee2b8dfa7b251812912fef45278d6f07698bdb92c /tcp.c
parent57de44a4bc36a7034b2a90f44db0696f3099f75a (diff)
downloadpasst-6a348cb435ce05d9da5348246eff867774d150d6.tar
passt-6a348cb435ce05d9da5348246eff867774d150d6.tar.gz
passt-6a348cb435ce05d9da5348246eff867774d150d6.tar.bz2
passt-6a348cb435ce05d9da5348246eff867774d150d6.tar.lz
passt-6a348cb435ce05d9da5348246eff867774d150d6.tar.xz
passt-6a348cb435ce05d9da5348246eff867774d150d6.tar.zst
passt-6a348cb435ce05d9da5348246eff867774d150d6.zip
tcp: make tcp_sock_set_bufsize() static (again)
e5eefe77435a ("tcp: Refactor to use events instead of states, split out spliced implementation") has exported tcp_sock_set_bufsize() to be able to use it in tcp_splice.c, but 6ccab72d9b40 has removed its use in tcp_splice.c, so we can set it static again. Fixes: 6ccab72d9b40 ("tcp: Improve handling of fallback if socket pool is empty on new splice") Signed-off-by: Laurent Vivier <lvivier@redhat.com> Reviewed-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'tcp.c')
-rw-r--r--tcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tcp.c b/tcp.c
index 8e3a4c5..9515649 100644
--- a/tcp.c
+++ b/tcp.c
@@ -920,7 +920,7 @@ static void tcp_get_sndbuf(struct tcp_tap_conn *conn)
* tcp_sock_set_bufsize() - Set SO_RCVBUF and SO_SNDBUF to maximum values
* @s: Socket, can be -1 to avoid check in the caller
*/
-void tcp_sock_set_bufsize(const struct ctx *c, int s)
+static void tcp_sock_set_bufsize(const struct ctx *c, int s)
{
int v = INT_MAX / 2; /* Kernel clamps and rounds, no need to check */