mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-28 08:02:54 +00:00
vnic: fix compilation of an IPv6 only kernel
MFC after: 1 week Sponsored by: Netflix, Inc.
This commit is contained in:
parent
e1735b35e3
commit
1d3d30c8d2
@ -1749,10 +1749,15 @@ nicvf_sq_add_hdr_subdesc(struct snd_queue *sq, int qentry,
|
||||
struct ether_vlan_header *eh;
|
||||
#ifdef INET
|
||||
struct ip *ip;
|
||||
#endif
|
||||
#if defined(INET6) || defined(INET)
|
||||
struct tcphdr *th;
|
||||
#endif
|
||||
#ifdef INET
|
||||
int iphlen;
|
||||
#endif
|
||||
int ehdrlen, poff, proto;
|
||||
uint16_t etype;
|
||||
int ehdrlen, iphlen, poff, proto;
|
||||
|
||||
nic = sq->nic;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user