Lines Matching refs:evl
621 struct ether_vlan_header *evl;
623 if (m->m_len < sizeof(*evl) &&
624 (m = m_pullup(m, sizeof(*evl))) == NULL) {
633 evl = mtod(m, struct ether_vlan_header *);
634 m->m_pkthdr.ether_vtag = ntohs(evl->evl_tag);
637 bcopy((char *)evl, (char *)evl + ETHER_VLAN_ENCAP_LEN,
1329 struct ether_vlan_header *evl;
1336 if (m->m_len < sizeof(*evl)) {
1337 m = m_pullup(m, sizeof(*evl));
1346 evl = mtod(m, struct ether_vlan_header *);
1347 bcopy((char *)evl + ETHER_VLAN_ENCAP_LEN,
1348 (char *)evl, ETHER_HDR_LEN - ETHER_TYPE_LEN);
1349 evl->evl_encap_proto = htons(proto);
1350 evl->evl_tag = htons(tag);