git: 6f4debc004c3 - main - tcp: fix build with RSS
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 06 Dec 2025 16:32:57 UTC
The branch main has been updated by glebius:
URL: https://cgit.FreeBSD.org/src/commit/?id=6f4debc004c31a2bd846757859e67855ab3d4c8d
commit 6f4debc004c31a2bd846757859e67855ab3d4c8d
Author: Gleb Smirnoff <glebius@FreeBSD.org>
AuthorDate: 2025-12-06 16:32:08 +0000
Commit: Gleb Smirnoff <glebius@FreeBSD.org>
CommitDate: 2025-12-06 16:32:08 +0000
tcp: fix build with RSS
PR: 291439
Fixes: 73fe85e486d297c9c976095854c1c84007e543f0
---
sys/netinet/tcp_syncache.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/sys/netinet/tcp_syncache.c b/sys/netinet/tcp_syncache.c
index eb473dac4dfc..6a3c5a5c9310 100644
--- a/sys/netinet/tcp_syncache.c
+++ b/sys/netinet/tcp_syncache.c
@@ -71,6 +71,7 @@
#include <netinet/ip.h>
#include <netinet/in_var.h>
#include <netinet/in_pcb.h>
+#include <netinet/in_rss.h>
#include <netinet/ip_var.h>
#include <netinet/ip_options.h>
#ifdef INET6
@@ -79,6 +80,7 @@
#include <netinet6/nd6.h>
#include <netinet6/ip6_var.h>
#include <netinet6/in6_pcb.h>
+#include <netinet6/in6_rss.h>
#endif
#include <netinet/tcp.h>
#include <netinet/tcp_fastopen.h>