From 2dbed699e78ed3393ac97a64b04581974070afed Mon Sep 17 00:00:00 2001 From: Stefano Brivio Date: Sun, 26 Sep 2021 23:19:40 +0200 Subject: passt: Align pkt_buf to PAGE_SIZE (start and size), try to fit in huge pages If transparent huge pages are available, madvise() will do the trick. While at it, decrease EPOLL_EVENTS for the main loop from 10 to 8, for slightly better socket fairness. Signed-off-by: Stefano Brivio --- passt.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'passt.c') diff --git a/passt.c b/passt.c index 3604fa1..6645e45 100644 --- a/passt.c +++ b/passt.c @@ -28,6 +28,7 @@ #include #include #include +#include #include #include #include @@ -61,12 +62,12 @@ #include "tap.h" #include "conf.h" -#define EPOLL_EVENTS 10 +#define EPOLL_EVENTS 8 #define __TIMER_INTERVAL MIN(TCP_TIMER_INTERVAL, UDP_TIMER_INTERVAL) #define TIMER_INTERVAL MIN(__TIMER_INTERVAL, ICMP_TIMER_INTERVAL) -char pkt_buf [PKT_BUF_BYTES]; +char pkt_buf[PKT_BUF_BYTES] __attribute__ ((aligned(PAGE_SIZE))); char *ip_proto_str[IPPROTO_SCTP + 1] = { [IPPROTO_ICMP] = "ICMP", @@ -323,6 +324,9 @@ int main(int argc, char **argv) log_name = "passt"; } + if (madvise(pkt_buf, TAP_BUF_BYTES, MADV_HUGEPAGE)) + perror("madvise"); + openlog(log_name, 0, LOG_DAEMON); setlogmask(LOG_MASK(LOG_EMERG)); -- cgit v1.2.3