Home
last modified time | relevance | path

Searched refs:vxh (Results 1 – 1 of 1) sorted by relevance

/illumos-gate/usr/src/uts/common/io/overlay/plugins/
H A Doverlay_vxlan.c164 vxlan_hdr_t *vxh; in vxlan_o_encap() local
189 vxh = (vxlan_hdr_t *)ob->b_rptr; in vxlan_o_encap()
190 vxh->vxlan_flags = ntohl(VXLAN_F_VDI); in vxlan_o_encap()
191 vxh->vxlan_id = htonl((uint32_t)einfop->ovdi_id << VXLAN_ID_SHIFT); in vxlan_o_encap()
201 vxlan_hdr_t *vxh; in vxlan_o_decap() local
205 vxh = (vxlan_hdr_t *)mp->b_rptr; in vxlan_o_decap()
206 if ((ntohl(vxh->vxlan_flags) & VXLAN_F_VDI) == 0) in vxlan_o_decap()
209 dinfop->ovdi_id = ntohl(vxh->vxlan_id) >> VXLAN_ID_SHIFT; in vxlan_o_decap()