aboutgitcodebugslistschat
path: root/passt.c
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2023-08-11 15:12:26 +1000
committerStefano Brivio <sbrivio@redhat.com>2023-08-13 17:30:13 +0200
commite6f81e55788bc6ede5e98a83820263e394455ba9 (patch)
treef4e8fa7232440bdd2061ecbe8e5a7627da8d8718 /passt.c
parent8271a2ed57331f211c781bb551efe52e380902ae (diff)
downloadpasst-e6f81e55788bc6ede5e98a83820263e394455ba9.tar
passt-e6f81e55788bc6ede5e98a83820263e394455ba9.tar.gz
passt-e6f81e55788bc6ede5e98a83820263e394455ba9.tar.bz2
passt-e6f81e55788bc6ede5e98a83820263e394455ba9.tar.lz
passt-e6f81e55788bc6ede5e98a83820263e394455ba9.tar.xz
passt-e6f81e55788bc6ede5e98a83820263e394455ba9.tar.zst
passt-e6f81e55788bc6ede5e98a83820263e394455ba9.zip
epoll: Split handling of TCP timerfds into its own handler function
tcp_sock_handler() actually handles several different types of fd events. This includes timerfds that aren't sockets at all. The handling of these has essentially nothing in common with the other cases. So, give the TCP timers there own epoll_type value and dispatch directly to their handler. This also means we can remove the timer field from tcp_epoll_ref, the information it encoded is now implicit in the epoll_type value. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'passt.c')
-rw-r--r--passt.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/passt.c b/passt.c
index 2d674bf..a700e41 100644
--- a/passt.c
+++ b/passt.c
@@ -57,6 +57,7 @@ char pkt_buf[PKT_BUF_BYTES] __attribute__ ((aligned(PAGE_SIZE)));
char *epoll_type_str[EPOLL_TYPE_MAX + 1] = {
[EPOLL_TYPE_TCP] = "TCP socket",
+ [EPOLL_TYPE_TCP_TIMER] = "TCP timer",
[EPOLL_TYPE_UDP] = "UDP socket",
[EPOLL_TYPE_ICMP] = "ICMP socket",
[EPOLL_TYPE_ICMPV6] = "ICMPv6 socket",
@@ -324,6 +325,9 @@ loop:
if (!c.no_tcp)
tcp_sock_handler(&c, ref, eventmask, &now);
break;
+ case EPOLL_TYPE_TCP_TIMER:
+ tcp_timer_handler(&c, ref);
+ break;
case EPOLL_TYPE_UDP:
udp_sock_handler(&c, ref, eventmask, &now);
break;