/src/sys/arch/xen/xen/ |
xennet_checksum.c | 101 struct ether_vlan_header *evl = m_extract(m, 0, sizeof(*evl)); local in function:xennet_checksum_fill 102 if (evl == NULL) { 107 etype = ntohs(evl->evl_proto);
|
/src/sys/net/ |
if_ethersubr.c | 981 struct ether_vlan_header evl; local in function:ether_bpf_mtap 991 memcpy(&evl, mtod(m, char *), ETHER_HDR_LEN); 992 evl.evl_proto = evl.evl_encap_proto; 993 evl.evl_encap_proto = htons(ETHERTYPE_VLAN); 994 evl.evl_tag = htons(vlan_get_tag(m)); 1002 mh.mh_data = (char *)&evl; 1003 mh.mh_len = sizeof(evl); 1798 struct ether_vlan_header *evl; local in function:ether_inject_vlantag 1810 if (m->m_len < sizeof(*evl)) { 1856 struct ether_vlan_header *evl; local in function:ether_strip_vlantag [all...] |
/src/sys/dev/pci/igc/ |
if_igc.c | 3179 struct ether_vlan_header *evl; local in function:igc_tx_ctx_setup 3219 evl = mtod(mp, struct ether_vlan_header *); 3220 if (evl->evl_encap_proto == htons(ETHERTYPE_VLAN)) { 3223 ehtype = evl->evl_proto; 3226 ehtype = evl->evl_encap_proto;
|
/src/sys/net/lagg/ |
if_lagg.c | 893 const struct ether_vlan_header *evl; local in function:lagg_hashmbuf 922 evl = lagg_m_extract(m, 0, sizeof(*evl), __alignof(*evl), 924 if (evl == NULL) 927 vlantag = ntohs(evl->evl_tag); 928 etype = ntohs(evl->evl_proto);
|
/src/sys/dev/hyperv/ |
if_hvn.c | 1479 struct ether_vlan_header *evl; local in function:hvn_encap 1481 m = hvn_pullup_hdr(m, sizeof(*evl)); 1488 evl = mtod(m, struct ether_vlan_header *); 1489 if (evl->evl_encap_proto == htons(ETHERTYPE_VLAN)) { 1491 uint16_t proto = evl->evl_proto; 1493 vlan_set_tag(m, ntohs(evl->evl_tag)); 1498 memmove((uint8_t *)evl + ETHER_VLAN_ENCAP_LEN, 1499 evl, ETHER_HDR_LEN); 1680 struct ether_vlan_header evl; local in function:hvn_bpf_mtap 1700 memcpy(&evl, eh, ETHER_ADDR_LEN * 2) 4830 struct ether_vlan_header *evl; local in function:hvn_rxeof [all...] |