vnic: fix compilation of an IPv6 only kernel

MFC after:	1 week
Sponsored by:	Netflix, Inc.
This commit is contained in:
Michael Tuexen 2024-02-06 22:47:16 +01:00
parent e1735b35e3
commit 1d3d30c8d2

View File

@ -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;