Lines Matching refs:vxh
2118 static void vxlan_build_gbp_hdr(struct vxlanhdr *vxh, u32 vxflags, in vxlan_build_gbp_hdr() argument
2126 gbp = (struct vxlanhdr_gbp *)vxh; in vxlan_build_gbp_hdr()
2127 vxh->vx_flags |= VXLAN_HF_GBP; in vxlan_build_gbp_hdr()
2138 static int vxlan_build_gpe_hdr(struct vxlanhdr *vxh, u32 vxflags, in vxlan_build_gpe_hdr() argument
2141 struct vxlanhdr_gpe *gpe = (struct vxlanhdr_gpe *)vxh; in vxlan_build_gpe_hdr()
2155 struct vxlanhdr *vxh; in vxlan_build_skb() local
2184 vxh = __skb_push(skb, sizeof(*vxh)); in vxlan_build_skb()
2185 vxh->vx_flags = VXLAN_HF_VNI; in vxlan_build_skb()
2186 vxh->vx_vni = vxlan_vni_field(vni); in vxlan_build_skb()
2192 vxh->vx_vni |= vxlan_compute_rco(start, skb->csum_offset); in vxlan_build_skb()
2193 vxh->vx_flags |= VXLAN_HF_RCO; in vxlan_build_skb()
2202 vxlan_build_gbp_hdr(vxh, vxflags, md); in vxlan_build_skb()
2204 err = vxlan_build_gpe_hdr(vxh, vxflags, skb->protocol); in vxlan_build_skb()