aboutgitcodebugslistschat
path: root/tcp.c
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2022-11-17 16:58:48 +1100
committerStefano Brivio <sbrivio@redhat.com>2022-11-25 01:34:58 +0100
commit34476511f724d52ef4d944627ee741e33c1ba3d7 (patch)
tree800d82e777d723b3c3aca5b9f47069efa029bdea /tcp.c
parent0eef48c4be5ae8d9de5fed4daaa1954323e08b96 (diff)
downloadpasst-34476511f724d52ef4d944627ee741e33c1ba3d7.tar
passt-34476511f724d52ef4d944627ee741e33c1ba3d7.tar.gz
passt-34476511f724d52ef4d944627ee741e33c1ba3d7.tar.bz2
passt-34476511f724d52ef4d944627ee741e33c1ba3d7.tar.lz
passt-34476511f724d52ef4d944627ee741e33c1ba3d7.tar.xz
passt-34476511f724d52ef4d944627ee741e33c1ba3d7.tar.zst
passt-34476511f724d52ef4d944627ee741e33c1ba3d7.zip
tcp: Partially unify tcp_timer() and tcp_splice_timer()
These two functions scan all the non-splced and spliced connections respectively and perform timed updates on them. Avoid scanning the now unified table twice, by having tcp_timer scan it once calling the relevant per-connection function for each one. Signed-off-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.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/tcp.c b/tcp.c
index a9cc811..24cd10b 100644
--- a/tcp.c
+++ b/tcp.c
@@ -3283,8 +3283,6 @@ int tcp_init(struct ctx *c)
refill_arg.ns = 1;
NS_CALL(tcp_sock_refill, &refill_arg);
-
- tcp_splice_timer(c);
}
return 0;
@@ -3416,7 +3414,7 @@ static int tcp_port_rebind(void *arg)
void tcp_timer(struct ctx *c, const struct timespec *ts)
{
struct tcp_sock_refill_arg refill_arg = { c, 0 };
- struct tcp_tap_conn *conn;
+ union tcp_conn *conn;
(void)ts;
@@ -3439,11 +3437,13 @@ void tcp_timer(struct ctx *c, const struct timespec *ts)
}
}
- for (conn = CONN(c->tcp.conn_count - 1); conn >= CONN(0); conn--) {
- if (conn->c.spliced)
- continue;
- if (conn->events == CLOSED)
- tcp_conn_destroy(c, conn);
+ for (conn = tc + c->tcp.conn_count - 1; conn >= tc; conn--) {
+ if (conn->c.spliced) {
+ tcp_splice_timer(c, &conn->splice);
+ } else {
+ if (conn->tap.events == CLOSED)
+ tcp_conn_destroy(c, &conn->tap);
+ }
}
tcp_sock_refill(&refill_arg);
@@ -3453,6 +3453,6 @@ void tcp_timer(struct ctx *c, const struct timespec *ts)
(c->ifi6 && ns_sock_pool6[TCP_SOCK_POOL_TSH] < 0))
NS_CALL(tcp_sock_refill, &refill_arg);
- tcp_splice_timer(c);
+ tcp_splice_pipe_refill(c);
}
}