1
0
mirror of https://passt.top/passt synced 2024-07-01 23:42:41 +00:00

tcp, tcp_splice: Use less awkward syntax to swap in/out sockets from pools

Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
This commit is contained in:
Stefano Brivio 2022-03-25 11:24:23 +01:00
parent f41f0416b8
commit 415ccf6116
2 changed files with 10 additions and 12 deletions

9
tcp.c
View File

@ -2031,13 +2031,12 @@ static uint32_t tcp_seq_init(struct ctx *c, int af, void *addr,
*/
static int tcp_conn_new_sock(struct ctx *c, sa_family_t af)
{
int *pool = af == AF_INET6 ? init_sock_pool6 : init_sock_pool4, i, s;
int *p = af == AF_INET6 ? init_sock_pool6 : init_sock_pool4, i, s = -1;
for (i = 0; i < TCP_SOCK_POOL_SIZE; i++, pool++) {
if ((s = *pool) >= 0) {
*pool = -1;
for (i = 0; i < TCP_SOCK_POOL_SIZE; i++, p++) {
SWAP(s, *p);
if (s >= 0)
break;
}
}
if (s < 0)

View File

@ -501,18 +501,17 @@ static int tcp_splice_new(struct ctx *c, struct tcp_splice_conn *conn,
in_port_t port)
{
struct tcp_splice_connect_ns_arg ns_arg = { c, conn, port, 0 };
int *sock_pool_p, i, s = -1;
int *p, i, s = -1;
if (bitmap_isset(c->tcp.port_to_tap, port))
sock_pool_p = CONN_V6(conn) ? ns_sock_pool6 : ns_sock_pool4;
p = CONN_V6(conn) ? ns_sock_pool6 : ns_sock_pool4;
else
sock_pool_p = CONN_V6(conn) ? init_sock_pool6 : init_sock_pool4;
p = CONN_V6(conn) ? init_sock_pool6 : init_sock_pool4;
for (i = 0; i < TCP_SOCK_POOL_SIZE; i++, sock_pool_p++) {
if ((s = *sock_pool_p) >= 0) {
*sock_pool_p = -1;
for (i = 0; i < TCP_SOCK_POOL_SIZE; i++, p++) {
SWAP(s, *p);
if (s >= 0)
break;
}
}
if (s < 0 && bitmap_isset(c->tcp.port_to_tap, port)) {