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.
This commit is contained in:
Gleb Smirnoff 2022-10-19 15:15:53 -07:00
parent e1401f7579
commit b2c558c898

View file

@ -42,6 +42,7 @@ __FBSDID("$FreeBSD$");
#include <sys/mutex.h>
#include <sys/rwlock.h>
#include <sys/socket.h>
#include <sys/socketvar.h>
#include <sys/sbuf.h>
#include <sys/taskqueue.h>
#include <net/if.h>
@ -50,6 +51,7 @@ __FBSDID("$FreeBSD$");
#include <net/if_vlan_var.h>
#include <net/route.h>
#include <netinet/in.h>
#include <netinet/tcp_var.h>
#include <netinet/toecore.h>
#include "common/common.h"