Symbol: ether_vlan_header
usr/src/cmd/cmd-inet/usr.sbin/snoop/snoop_ether.c
184
if (origlen < sizeof (struct ether_vlan_header)) {
usr/src/cmd/cmd-inet/usr.sbin/snoop/snoop_ether.c
402
return (sizeof (struct ether_vlan_header));
usr/src/cmd/cmd-inet/usr.sbin/snoop/snoop_trill.c
41
struct ether_vlan_header *inner_ethvlanhdr;
usr/src/cmd/cmd-inet/usr.sbin/snoop/snoop_trill.c
99
inner_ethvlanhdr = (struct ether_vlan_header *)inner_ethhdr;
usr/src/cmd/cmd-inet/usr.sbin/snoop/snoop_vlan.h
41
#define ENCAP_ETHERTYPE_OFF (offsetof(struct ether_vlan_header, ether_type) -\
usr/src/cmd/cmd-inet/usr.sbin/snoop/snoop_vlan.h
42
offsetof(struct ether_vlan_header, ether_tpid))
usr/src/cmd/cmd-inet/usr.sbin/snoop/snoop_vlan.h
48
#define VLAN_ID_OFFSET (offsetof(struct ether_vlan_header, ether_tci) -\
usr/src/cmd/cmd-inet/usr.sbin/snoop/snoop_vlan.h
49
offsetof(struct ether_vlan_header, ether_dhost))
usr/src/common/inet/inet_hash.c
186
struct ether_vlan_header *evhp;
usr/src/common/inet/inet_hash.c
189
skip_len = sizeof (struct ether_vlan_header);
usr/src/common/inet/inet_hash.c
196
evhp = (struct ether_vlan_header *)newmp->b_rptr;
usr/src/common/inet/inet_hash.c
198
evhp = (struct ether_vlan_header *)mp->b_rptr;
usr/src/lib/varpd/libvarpd/common/libvarpd_arp.c
619
struct ether_vlan_header *eh;
usr/src/lib/varpd/libvarpd/common/libvarpd_arp.c
620
eh = (struct ether_vlan_header *)(buf + bsize);
usr/src/lib/varpd/libvarpd/common/libvarpd_arp.c
621
bsize += sizeof (struct ether_vlan_header);
usr/src/test/os-tests/tests/mac/mac_parsing.c
770
struct ether_vlan_header hdr_l2_vlan = {
usr/src/uts/common/inet/ipf/ip_fil_solaris.c
2310
struct ether_vlan_header *evh =
usr/src/uts/common/inet/ipf/ip_fil_solaris.c
2311
(struct ether_vlan_header *)ethp;
usr/src/uts/common/inet/ipf/ip_fil_solaris.c
2313
VERIFY3S(len, >=, sizeof (struct ether_vlan_header));
usr/src/uts/common/inet/sockmods/sockmod_pfp.c
389
struct ether_vlan_header *evhp;
usr/src/uts/common/inet/sockmods/sockmod_pfp.c
390
struct ether_vlan_header evh;
usr/src/uts/common/inet/sockmods/sockmod_pfp.c
392
hdr.mhi_hdrsize = sizeof (struct ether_vlan_header);
usr/src/uts/common/inet/sockmods/sockmod_pfp.c
396
evhp = (struct ether_vlan_header *)mp->b_rptr;
usr/src/uts/common/io/bge/bge_recv2.c
204
struct ether_vlan_header *ehp;
usr/src/uts/common/io/bge/bge_send.c
492
struct ether_vlan_header *ehp;
usr/src/uts/common/io/bnx/bnx.h
377
typedef struct ether_vlan_header vlan_hdr_t;
usr/src/uts/common/io/bnx/bnxsnd.c
193
sizeof (struct ether_vlan_header));
usr/src/uts/common/io/bnx/bnxsnd.c
445
umdevice->dev_var.mtu + sizeof (struct ether_vlan_header))) {
usr/src/uts/common/io/bnxe/bnxe.h
151
#define BNXE_PKTHDR_LEN (sizeof(struct ether_vlan_header) + sizeof(struct ip) + sizeof(struct tcphdr) + BNXE_OPTION_LEN)
usr/src/uts/common/io/bnxe/bnxe.h
152
#define BNXE_LSO_MAXLEN (BNXE_IP_MAXLEN + sizeof(struct ether_vlan_header) - BNXE_PKTHDR_LEN) /* maximum payload */
usr/src/uts/common/io/bnxe/bnxe_rr.c
62
uint8_t hdrs_buf[sizeof(struct ether_vlan_header) +
usr/src/uts/common/io/bnxe/bnxe_rr.c
76
etype = ntohs(((struct ether_vlan_header *)pHdr)->ether_type);
usr/src/uts/common/io/bnxe/bnxe_rr.c
77
eHdrSize = sizeof(struct ether_vlan_header);
usr/src/uts/common/io/bnxe/bnxe_tx.c
1219
sizeof(struct ether_vlan_header)));
usr/src/uts/common/io/bnxe/bnxe_tx.c
1251
sizeof(struct ether_vlan_header)));
usr/src/uts/common/io/bnxe/bnxe_tx.c
645
ASSERT(MBLKL(pMblk) >= sizeof(struct ether_vlan_header));
usr/src/uts/common/io/bnxe/bnxe_tx.c
646
return GLD_VTAG_VID(ntohs(((struct ether_vlan_header *)pMblk->b_rptr)->ether_tci));
usr/src/uts/common/io/bnxe/bnxe_tx.c
712
l2HdrLen = sizeof(struct ether_vlan_header);
usr/src/uts/common/io/bridge.c
162
#define VLAN_INCR (sizeof (struct ether_vlan_header) - \
usr/src/uts/common/io/bridge.c
1703
struct ether_vlan_header *evh;
usr/src/uts/common/io/bridge.c
1748
ASSERT(minlen >= sizeof (struct ether_vlan_header));
usr/src/uts/common/io/bridge.c
1754
minlen = sizeof (struct ether_vlan_header);
usr/src/uts/common/io/bridge.c
1779
evh = (struct ether_vlan_header *)mp->b_rptr;
usr/src/uts/common/io/bridge.c
1784
if (mlen > sizeof (struct ether_vlan_header))
usr/src/uts/common/io/bridge.c
1786
sizeof (struct ether_vlan_header),
usr/src/uts/common/io/bridge.c
1788
mlen - sizeof (struct ether_vlan_header));
usr/src/uts/common/io/bridge.c
1801
mp->b_rptr + sizeof (struct ether_vlan_header),
usr/src/uts/common/io/bridge.c
1820
struct ether_vlan_header *evhp;
usr/src/uts/common/io/bridge.c
1824
evhp = (struct ether_vlan_header *)mp->b_rptr;
usr/src/uts/common/io/bridge.c
2130
ptrdiff_t tpos = offsetof(struct ether_vlan_header, ether_tci);
usr/src/uts/common/io/bridge.c
2294
((struct ether_vlan_header *)mp->b_rptr)->
usr/src/uts/common/io/bridge.c
2581
struct ether_vlan_header *evhp;
usr/src/uts/common/io/bridge.c
2584
evhp = (struct ether_vlan_header *)mp->b_rptr;
usr/src/uts/common/io/dld/dld_str.c
1163
struct ether_vlan_header *evhp;
usr/src/uts/common/io/dld/dld_str.c
1166
ASSERT(MBLKL(mp) >= sizeof (struct ether_vlan_header));
usr/src/uts/common/io/dld/dld_str.c
1174
evhp = (struct ether_vlan_header *)mp->b_rptr;
usr/src/uts/common/io/dld/dld_str.c
793
struct ether_vlan_header *evhp;
usr/src/uts/common/io/dld/dld_str.c
800
evhp = (struct ether_vlan_header *)mp->b_rptr;
usr/src/uts/common/io/dld/dld_str.c
805
len = sizeof (struct ether_vlan_header);
usr/src/uts/common/io/dld/dld_str.c
823
evhp = (struct ether_vlan_header *)mp->b_rptr;
usr/src/uts/common/io/dld/dld_str.c
836
hmp = allocb(sizeof (struct ether_vlan_header), BPRI_MED);
usr/src/uts/common/io/dld/dld_str.c
840
evhp = (struct ether_vlan_header *)hmp->b_rptr;
usr/src/uts/common/io/dld/dld_str.c
850
hmp->b_wptr += sizeof (struct ether_vlan_header);
usr/src/uts/common/io/dls/dls.c
473
struct ether_vlan_header *evhp;
usr/src/uts/common/io/dls/dls.c
492
extra_len = sizeof (struct ether_vlan_header) -
usr/src/uts/common/io/dls/dls.c
514
evhp = (struct ether_vlan_header *)mp->b_rptr;
usr/src/uts/common/io/e1000g/e1000g_main.c
4826
sizeof (struct ether_vlan_header) - ETHERFCSL;
usr/src/uts/common/io/e1000g/e1000g_main.c
4830
sizeof (struct ether_vlan_header) - ETHERFCSL;
usr/src/uts/common/io/e1000g/e1000g_main.c
4834
sizeof (struct ether_vlan_header) - ETHERFCSL;
usr/src/uts/common/io/e1000g/e1000g_main.c
4891
maxframe = mtu + sizeof (struct ether_vlan_header) + ETHERFCSL;
usr/src/uts/common/io/e1000g/e1000g_main.c
948
sizeof (struct ether_vlan_header) - ETHERFCSL;
usr/src/uts/common/io/e1000g/e1000g_sw.h
279
(DEFAULT_MTU + sizeof (struct ether_vlan_header) + ETHERFCSL)
usr/src/uts/common/io/e1000g/e1000g_sw.h
281
(MAXIMUM_MTU + sizeof (struct ether_vlan_header) + ETHERFCSL)
usr/src/uts/common/io/e1000g/e1000g_sw.h
318
((((struct ether_vlan_header *)(uintptr_t)ptr)->ether_tpid) == \
usr/src/uts/common/io/e1000g/e1000g_tx.c
483
if (((struct ether_vlan_header *)(uintptr_t)mp->b_rptr)->ether_tpid ==
usr/src/uts/common/io/e1000g/e1000g_tx.c
486
sizeof (struct ether_vlan_header);
usr/src/uts/common/io/ena/ena.c
947
ena->ena_max_frame_hdr = sizeof (struct ether_vlan_header);
usr/src/uts/common/io/fibre-channel/fca/oce/oce_rx.c
451
struct ether_vlan_header *ehp;
usr/src/uts/common/io/fibre-channel/fca/oce/oce_rx.c
456
ehp = (struct ether_vlan_header *)voidptr(mp->b_rptr);
usr/src/uts/common/io/fibre-channel/fca/oce/oce_tx.c
641
struct ether_vlan_header *evh;
usr/src/uts/common/io/fibre-channel/fca/oce/oce_tx.c
645
evh = (struct ether_vlan_header *)(void *)mp->b_rptr;
usr/src/uts/common/io/fibre-channel/fca/oce/oce_tx.c
680
struct ether_vlan_header *evh;
usr/src/uts/common/io/fibre-channel/fca/oce/oce_tx.c
749
evh = (struct ether_vlan_header *)(void *)mp->b_rptr;
usr/src/uts/common/io/fibre-channel/fca/oce/oce_tx.c
752
ip_offset = sizeof (struct ether_vlan_header);
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
4830
struct ether_vlan_header *ethvhdr;
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
4837
ethvhdr = (struct ether_vlan_header *)((void *)bp);
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
4840
mac_hdr_len = sizeof (struct ether_vlan_header);
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
5083
struct ether_vlan_header *ethvhdr;
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
5098
ethvhdr = (struct ether_vlan_header *)((void *)bp);
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
5105
mac_hdr_len = sizeof (struct ether_vlan_header);
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
5177
struct ether_vlan_header *ethvhdr;
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
5185
ethvhdr = (struct ether_vlan_header *)(void *)bp;
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
5189
mac_hdr_len = sizeof (struct ether_vlan_header);
usr/src/uts/common/io/gldutil.c
212
struct ether_vlan_header *evhp;
usr/src/uts/common/io/gldutil.c
215
if ((MBLKL(mp) < sizeof (struct ether_vlan_header)) &&
usr/src/uts/common/io/gldutil.c
216
(pullupmsg(mp, sizeof (struct ether_vlan_header))
usr/src/uts/common/io/gldutil.c
221
evhp = (struct ether_vlan_header *)mp->b_rptr;
usr/src/uts/common/io/gldutil.c
430
struct ether_vlan_header *evhp;
usr/src/uts/common/io/gldutil.c
442
evhp = (struct ether_vlan_header *)nmp->b_rptr;
usr/src/uts/common/io/gldutil.c
445
if ((nmp = allocb(sizeof (struct ether_vlan_header),
usr/src/uts/common/io/gldutil.c
449
nmp->b_wptr += sizeof (struct ether_vlan_header);
usr/src/uts/common/io/gldutil.c
452
evhp = (struct ether_vlan_header *)nmp->b_rptr;
usr/src/uts/common/io/hxge/hxge_impl.h
163
((((struct ether_vlan_header *)ptr)->ether_tpid) == \
usr/src/uts/common/io/hxge/hxge_send.c
172
start_offset += sizeof (struct ether_vlan_header);
usr/src/uts/common/io/hxge/hxge_send.c
173
stuff_offset += sizeof (struct ether_vlan_header);
usr/src/uts/common/io/hxge/hxge_txdma.c
296
bcopy(nmp->b_rptr, &hdrs_buf[0], sizeof (struct ether_vlan_header));
usr/src/uts/common/io/hxge/hxge_txdma.c
321
eth_type = ntohs(((struct ether_vlan_header *)
usr/src/uts/common/io/hxge/hxge_txdma.c
331
eth_hdr_size = sizeof (struct ether_vlan_header);
usr/src/uts/common/io/i40e/i40e_main.c
1568
sizeof (struct ether_vlan_header) + ETHERFCSL;
usr/src/uts/common/io/ib/clients/eoib/eib_data.c
455
struct ether_vlan_header *vl_hdr;
usr/src/uts/common/io/ib/clients/eoib/eib_data.c
463
vl_hdr = (struct ether_vlan_header *)(void *)mp->b_rptr;
usr/src/uts/common/io/ib/clients/eoib/eib_data.c
792
(sizeof (struct ether_vlan_header));
usr/src/uts/common/io/igb/igb_gld.c
1154
sizeof (struct ether_vlan_header) + ETHERFCSL;
usr/src/uts/common/io/igb/igb_main.c
2947
sizeof (struct ether_vlan_header) + ETHERFCSL;
usr/src/uts/common/io/igb/igb_main.c
915
sizeof (struct ether_vlan_header) - ETHERFCSL;
usr/src/uts/common/io/igb/igb_tx.c
644
offset = offsetof(struct ether_vlan_header, ether_type);
usr/src/uts/common/io/igb/igb_tx.c
654
mac_hdr_len = sizeof (struct ether_vlan_header);
usr/src/uts/common/io/igc/igc.c
806
igc->igc_max_frame = igc->igc_mtu + sizeof (struct ether_vlan_header) +
usr/src/uts/common/io/ixgbe/ixgbe_gld.c
556
sizeof (struct ether_vlan_header) + ETHERFCSL;
usr/src/uts/common/io/ixgbe/ixgbe_main.c
3700
sizeof (struct ether_vlan_header) + ETHERFCSL;
usr/src/uts/common/io/ixgbe/ixgbe_tx.c
626
offset = offsetof(struct ether_vlan_header, ether_type);
usr/src/uts/common/io/ixgbe/ixgbe_tx.c
636
mac_hdr_len = sizeof (struct ether_vlan_header);
usr/src/uts/common/io/mac/mac_client.c
4170
struct ether_vlan_header *t_evhp =
usr/src/uts/common/io/mac/mac_client.c
4171
(struct ether_vlan_header *)mp->b_rptr;
usr/src/uts/common/io/mac/mac_client.c
4463
struct ether_vlan_header *evhp;
usr/src/uts/common/io/mac/mac_client.c
4468
size = sizeof (struct ether_vlan_header);
usr/src/uts/common/io/mac/mac_client.c
4480
evhp = (struct ether_vlan_header *)mp->b_rptr;
usr/src/uts/common/io/mac/mac_client.c
4483
mhip->mhi_hdrsize = sizeof (struct ether_vlan_header);
usr/src/uts/common/io/mac/mac_flow.c
1674
struct ether_vlan_header *evhp =
usr/src/uts/common/io/mac/mac_flow.c
1675
(struct ether_vlan_header *)l2->l2_start;
usr/src/uts/common/io/mac/mac_flow.c
1701
struct ether_vlan_header *evhp;
usr/src/uts/common/io/mac/mac_flow.c
1703
evhp = (struct ether_vlan_header *)l2->l2_start;
usr/src/uts/common/io/mac/mac_flow.c
1722
struct ether_vlan_header *evhp;
usr/src/uts/common/io/mac/mac_flow.c
1725
evhp = (struct ether_vlan_header *)s->fs_mp->b_rptr;
usr/src/uts/common/io/mac/mac_flow.c
1738
l2->l2_hdrsize = sizeof (struct ether_vlan_header);
usr/src/uts/common/io/mac/mac_provider.c
1978
l2_off + offsetof(struct ether_vlan_header, ether_tci),
usr/src/uts/common/io/mac/mac_provider.c
1983
l2_off + offsetof(struct ether_vlan_header, ether_type),
usr/src/uts/common/io/mac/mac_provider.c
1987
hdrsize = sizeof (struct ether_vlan_header);
usr/src/uts/common/io/mac/mac_provider.c
2266
sizeof (struct ether_vlan_header));
usr/src/uts/common/io/mac/mac_sched.c
1566
sizeof (struct ether_vlan_header));
usr/src/uts/common/io/mac/mac_sched.c
2012
sizeof (struct ether_vlan_header));
usr/src/uts/common/io/mac/mac_util.c
1267
l2len = sizeof (struct ether_vlan_header);
usr/src/uts/common/io/mac/mac_util.c
1354
struct ether_vlan_header *evhp;
usr/src/uts/common/io/mac/mac_util.c
1365
hmp = allocb(sizeof (struct ether_vlan_header), BPRI_MED);
usr/src/uts/common/io/mac/mac_util.c
1371
evhp = (struct ether_vlan_header *)hmp->b_rptr;
usr/src/uts/common/io/mac/mac_util.c
1378
hmp->b_wptr += sizeof (struct ether_vlan_header);
usr/src/uts/common/io/mac/mac_util.c
1392
ASSERT(MBLKL(hmp) >= sizeof (struct ether_vlan_header));
usr/src/uts/common/io/mac/mac_util.c
1436
struct ether_vlan_header *evhp;
usr/src/uts/common/io/mac/mac_util.c
1438
evhp = (struct ether_vlan_header *)mp->b_rptr;
usr/src/uts/common/io/mac/mac_util.c
1440
ASSERT(MBLKL(mp) >= sizeof (struct ether_vlan_header));
usr/src/uts/common/io/mac/mac_util.c
1450
evhp = (struct ether_vlan_header *)mp->b_rptr;
usr/src/uts/common/io/mac/mac_util.c
1955
struct ether_vlan_header *evhp;
usr/src/uts/common/io/mac/mac_util.c
1958
skip_len = sizeof (struct ether_vlan_header);
usr/src/uts/common/io/mac/mac_util.c
1965
evhp = (struct ether_vlan_header *)newmp->b_rptr;
usr/src/uts/common/io/mac/mac_util.c
1967
evhp = (struct ether_vlan_header *)mp->b_rptr;
usr/src/uts/common/io/mlxcx/mlxcx.h
203
(sizeof (struct ether_vlan_header) + ETHERFCSL)
usr/src/uts/common/io/myri10ge/drv/myri10ge.c
1771
struct ether_vlan_header *vh;
usr/src/uts/common/io/myri10ge/drv/myri10ge.c
1796
vh = (struct ether_vlan_header *)(void *)mp->b_rptr;
usr/src/uts/common/io/ntxn/unm_nic_main.c
646
if (pktinfo->mac_hlen == sizeof (struct ether_vlan_header))
usr/src/uts/common/io/ntxn/unm_nic_main.c
715
if (MBLKL(mp) < (sizeof (struct ether_vlan_header) +
usr/src/uts/common/io/ntxn/unm_nic_main.c
718
type = ((struct ether_vlan_header *) \
usr/src/uts/common/io/ntxn/unm_nic_main.c
720
pktinfo->mac_hlen = sizeof (struct ether_vlan_header);
usr/src/uts/common/io/ntxn/unm_nic_main.c
748
type = ((struct ether_vlan_header *)(uintptr_t)ptr)->ether_type;
usr/src/uts/common/io/ntxn/unm_nic_main.c
749
pktinfo->mac_hlen = sizeof (struct ether_vlan_header);
usr/src/uts/common/io/nxge/nxge_send.c
1239
struct ether_vlan_header *evh;
usr/src/uts/common/io/nxge/nxge_send.c
1269
evh = (struct ether_vlan_header *)mp->b_rptr;
usr/src/uts/common/io/nxge/nxge_send.c
1273
ehlen = sizeof (struct ether_vlan_header);
usr/src/uts/common/io/nxge/nxge_send.c
285
start_offset += sizeof (struct ether_vlan_header);
usr/src/uts/common/io/nxge/nxge_send.c
286
stuff_offset += sizeof (struct ether_vlan_header);
usr/src/uts/common/io/nxge/nxge_txdma.c
502
tmp = sizeof (struct ether_vlan_header);
usr/src/uts/common/io/nxge/nxge_txdma.c
539
eth_type = ntohs(((struct ether_vlan_header *)
usr/src/uts/common/io/nxge/nxge_txdma.c
549
eth_hdr_size = sizeof (struct ether_vlan_header);
usr/src/uts/common/io/qede/qede_dbg.c
80
struct ether_vlan_header *vlan_hdr =
usr/src/uts/common/io/qede/qede_dbg.c
81
(struct ether_vlan_header *)(void *)mp->b_rptr;
usr/src/uts/common/io/qede/qede_dbg.c
83
pktinfo->mac_hlen = sizeof (struct ether_vlan_header);
usr/src/uts/common/io/qede/qede_fp.c
1415
struct ether_vlan_header *ethvhdr;
usr/src/uts/common/io/qede/qede_fp.c
1730
struct ether_vlan_header *ethvhdr;
usr/src/uts/common/io/qede/qede_fp.c
1748
ethvhdr = (struct ether_vlan_header *)((void *)bp);
usr/src/uts/common/io/qede/qede_fp.c
1752
mac_hdr_len = sizeof (struct ether_vlan_header);
usr/src/uts/common/io/qede/qede_fp.c
860
struct ether_vlan_header *vlan_hdr =
usr/src/uts/common/io/qede/qede_fp.c
861
(struct ether_vlan_header *)(void *)mp->b_rptr;
usr/src/uts/common/io/qede/qede_fp.c
863
pktinfo->mac_hlen = sizeof (struct ether_vlan_header);
usr/src/uts/common/io/qede/qede_fp.c
934
struct ether_vlan_header *vlan_hdr =
usr/src/uts/common/io/qede/qede_fp.c
935
(struct ether_vlan_header *)(void *)mp->b_rptr;
usr/src/uts/common/io/qede/qede_fp.c
937
pktinfo->mac_hlen = sizeof (struct ether_vlan_header);
usr/src/uts/common/io/qede/qede_fp.h
78
#define ETHER_VLAN_HEADER_LEN sizeof (struct ether_vlan_header)
usr/src/uts/common/io/rge/rge_rxtx.c
166
struct ether_vlan_header *ehp;
usr/src/uts/common/io/rge/rge_rxtx.c
265
ehp = (struct ether_vlan_header *)mp->b_rptr;
usr/src/uts/common/io/rge/rge_rxtx.c
586
struct ether_vlan_header *ehp;
usr/src/uts/common/io/rge/rge_rxtx.c
606
ehp = (struct ether_vlan_header *)mp->b_rptr;
usr/src/uts/common/io/sfxge/sfxge_rx.c
1337
sizeof (struct ether_vlan_header) :
usr/src/uts/common/io/sfxge/sfxge_rx.c
1557
struct ether_vlan_header *ethervhp;
usr/src/uts/common/io/sfxge/sfxge_rx.c
1559
ethervhp = (struct ether_vlan_header *)etherhp;
usr/src/uts/common/io/sfxge/sfxge_rx.c
1774
sizeof (struct ether_vlan_header) :
usr/src/uts/common/io/sfxge/sfxge_tcp.c
102
struct ether_vlan_header *ethervhp;
usr/src/uts/common/io/sfxge/sfxge_tcp.c
104
etherhs = sizeof (struct ether_vlan_header);
usr/src/uts/common/io/sfxge/sfxge_tcp.c
109
ethervhp = (struct ether_vlan_header *)(mp->b_rptr);
usr/src/uts/common/io/sfxge/sfxge_tx.c
1602
sizeof (struct ether_vlan_header) :
usr/src/uts/common/io/sfxge/sfxge_tx.c
1761
sizeof (struct ether_vlan_header) :
usr/src/uts/common/io/trill.c
100
struct ether_vlan_header *ethvlanhdr;
usr/src/uts/common/io/trill.c
125
ethvlanhdr = (struct ether_vlan_header *)hdr_mp->b_rptr;
usr/src/uts/common/io/trill.c
457
tci = ntohs(((struct ether_vlan_header *)ethhdr)->ether_tci);
usr/src/uts/common/io/vioif/vioif.c
1310
eth_hsize = sizeof (struct ether_vlan_header);
usr/src/uts/common/io/xge/drv/xgell.c
44
sizeof (struct ether_vlan_header))
usr/src/uts/common/io/yge/yge.c
2429
port->p_framesize += sizeof (struct ether_vlan_header);
usr/src/uts/common/sys/fibre-channel/fca/qlge/qlge_hw.h
940
#define VLAN_HEADER_LEN sizeof (struct ether_vlan_header) /* 18 */
usr/src/uts/common/sys/mac_client_impl.h
365
struct ether_vlan_header *evhp; \
usr/src/uts/common/sys/mac_client_impl.h
368
evhp = (struct ether_vlan_header *)(mp)->b_rptr;\
usr/src/uts/common/sys/nxge/nxge_impl.h
279
((((struct ether_vlan_header *)ptr)->ether_tpid) == \
usr/src/uts/common/xen/io/xnb.c
289
struct ether_vlan_header *evhp;
usr/src/uts/common/xen/io/xnb.c
291
ASSERT(MBLKL(mp) >= sizeof (struct ether_vlan_header));
usr/src/uts/common/xen/io/xnb.c
292
evhp = (struct ether_vlan_header *)mp->b_rptr;
usr/src/uts/common/xen/io/xnb.c
294
offset = sizeof (struct ether_vlan_header);
usr/src/uts/common/xen/io/xnf.c
1570
struct ether_vlan_header *evhp;
usr/src/uts/common/xen/io/xnf.c
1572
evhp = (struct ether_vlan_header *)ptr;
usr/src/uts/intel/io/viona/viona_impl.h
408
#define VIONA_MAX_HDRS_LEN (sizeof (struct ether_vlan_header) + \
usr/src/uts/intel/io/viona/viona_rx.c
855
pull = msgpullup(mp, sizeof (struct ether_vlan_header));
usr/src/uts/intel/io/vmxnet3s/vmxnet3_tx.c
88
struct ether_vlan_header *eth = (void *) mp->b_rptr;
usr/src/uts/intel/io/vmxnet3s/vmxnet3_tx.c
92
ethLen = sizeof (struct ether_vlan_header);
usr/src/uts/sun4v/io/vnet.c
1332
struct ether_vlan_header *evhp;
usr/src/uts/sun4v/io/vnet.c
1345
evhp = (struct ether_vlan_header *)bp->b_rptr;
usr/src/uts/sun4v/io/vnet_common.c
108
evhp = (struct ether_vlan_header *)nmp->b_rptr;
usr/src/uts/sun4v/io/vnet_common.c
120
nmp->b_wptr += sizeof (struct ether_vlan_header);
usr/src/uts/sun4v/io/vnet_common.c
167
mp->b_rptr += sizeof (struct ether_vlan_header);
usr/src/uts/sun4v/io/vnet_common.c
69
struct ether_vlan_header *evhp;
usr/src/uts/sun4v/io/vnet_common.c
85
evhp = (struct ether_vlan_header *)mp->b_rptr;
usr/src/uts/sun4v/io/vnet_common.c
94
nmp = allocb(sizeof (struct ether_vlan_header),
usr/src/uts/sun4v/io/vnet_dds.c
438
sizeof (struct ether_vlan_header) + ETHERFCSL;
usr/src/uts/sun4v/io/vnet_gen.c
1573
struct ether_vlan_header *evhp;
usr/src/uts/sun4v/io/vnet_gen.c
1578
evhp = (struct ether_vlan_header *)ehp;
usr/src/uts/sun4v/io/vsw_switching.c
1479
struct ether_vlan_header *evhp;
usr/src/uts/sun4v/io/vsw_switching.c
1486
evhp = (struct ether_vlan_header *)ehp;