From b2c558c898b83d1b052d49908842032b73f0de73 Mon Sep 17 00:00:00 2001 From: Gleb Smirnoff Date: Wed, 19 Oct 2022 15:15:53 -0700 Subject: [PATCH] cxgbe: include headers required to include t4_tom.h Before the change we would get struct tcpcb forward declaration only with help of pollution via in_pcb.h. --- sys/dev/cxgbe/tom/t4_tom_l2t.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/dev/cxgbe/tom/t4_tom_l2t.c b/sys/dev/cxgbe/tom/t4_tom_l2t.c index 1d094c30d25..97a1e08bda5 100644 --- a/sys/dev/cxgbe/tom/t4_tom_l2t.c +++ b/sys/dev/cxgbe/tom/t4_tom_l2t.c @@ -42,6 +42,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include @@ -50,6 +51,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include "common/common.h"