aboutgitcodebugslistschat
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2026-08-21 15:04:02 +1000
committerStefano Brivio <sbrivio@redhat.com>2026-09-08 16:11:28 +0200
commitcef6bce489ed9677fed7dcba602e77c726d3fd1a (patch)
treef262afefb33afbb497814f4bc5745502d9b8ff08
parentcf3a11f40210248d80194be2d5404ababeaeb17f (diff)
downloadpasst-cef6bce489ed9677fed7dcba602e77c726d3fd1a.tar
passt-cef6bce489ed9677fed7dcba602e77c726d3fd1a.tar.gz
passt-cef6bce489ed9677fed7dcba602e77c726d3fd1a.tar.bz2
passt-cef6bce489ed9677fed7dcba602e77c726d3fd1a.tar.lz
passt-cef6bce489ed9677fed7dcba602e77c726d3fd1a.tar.xz
passt-cef6bce489ed9677fed7dcba602e77c726d3fd1a.tar.zst
passt-cef6bce489ed9677fed7dcba602e77c726d3fd1a.zip
util, pasta: Remove some unneeded #includes
Presumably these mattered at some point in the past, but no longer. Found by clangd as invoked by Zed editor. Not sure why direct clang-tidy runs didn't spot these. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
-rw-r--r--pasta.c1
-rw-r--r--util.c3
2 files changed, 0 insertions, 4 deletions
diff --git a/pasta.c b/pasta.c
index 644e95f..140c102 100644
--- a/pasta.c
+++ b/pasta.c
@@ -47,7 +47,6 @@
#include "util.h"
#include "passt.h"
#include "pasta.h"
-#include "isolation.h"
#include "netlink.h"
#include "log.h"
#include "epoll_ctl.h"
diff --git a/util.c b/util.c
index 6a39d2d..c02aea9 100644
--- a/util.c
+++ b/util.c
@@ -30,11 +30,8 @@
#include "util.h"
#include "iov.h"
#include "passt.h"
-#include "packet.h"
#include "log.h"
#include "pcap.h"
-#include "epoll_ctl.h"
-#include "pasta.h"
#include "serialise.h"
#ifdef HAS_GETRANDOM
#include <sys/random.h>