Lines Matching refs:evl
1078 struct ether_vlan_header * evl; in vlan_output() local
1142 if (m->m_len < (int)sizeof(*evl)) { in vlan_output()
1143 m = m_pullup(m, sizeof(*evl)); in vlan_output()
1158 evl = mtod(m, struct ether_vlan_header *); in vlan_output()
1159 evl->evl_proto = evl->evl_encap_proto; in vlan_output()
1160 evl->evl_encap_proto = htons(ETHERTYPE_VLAN); in vlan_output()
1161 evl->evl_tag = htons(tag); in vlan_output()
1200 struct ether_vlan_header * evl; in vlan_input() local
1222 evl = (struct ether_vlan_header *)(void *)frame_header; in vlan_input()
1223 if (ntohs(evl->evl_proto) == ETHERTYPE_VLAN) { in vlan_input()
1228 tag = EVL_VLANOFTAG(ntohs(evl->evl_tag)); in vlan_input()
1235 evl->evl_encap_proto = evl->evl_proto; in vlan_input()