Symbol: vxlanhdr
drivers/net/ethernet/amd/xgbe/xgbe-drv.c
1487
sizeof(struct udphdr) + sizeof(struct vxlanhdr)))
drivers/net/ethernet/emulex/benet/be_main.c
5114
sizeof(struct udphdr) + sizeof(struct vxlanhdr) ||
drivers/net/ethernet/mellanox/mlx5/core/en/tc_tun_vxlan.c
91
struct vxlanhdr *vxh;
drivers/net/ethernet/mellanox/mlx5/core/en/tc_tun_vxlan.c
96
vxh = (struct vxlanhdr *)((char *)udp + sizeof(struct udphdr));
drivers/net/ethernet/netronome/nfp/nfp_net_common.c
2150
sizeof(struct udphdr) + sizeof(struct vxlanhdr))))
drivers/net/ethernet/sfc/tc_encap_actions.c
321
struct vxlanhdr *vxlan;
drivers/net/ethernet/sfc/tc_encap_actions.c
323
vxlan = (struct vxlanhdr *)(encap->encap_hdr + encap->encap_hdr_len);
drivers/net/ethernet/sfc/tc_encap_actions.c
349
#define vxlan_header_l4_len (sizeof(struct udphdr) + sizeof(struct vxlanhdr))
drivers/net/ethernet/sfc/tc_encap_actions.c
356
efx_gen_tun_header_udp(encap, sizeof(struct vxlanhdr));
drivers/net/ethernet/sfc/tc_encap_actions.c
378
efx_gen_tun_header_udp(encap, sizeof(struct vxlanhdr));
drivers/net/vxlan/vxlan_core.c
1537
const struct vxlanhdr *vh = vxlan_hdr(skb);
drivers/net/vxlan/vxlan_core.c
1559
const struct vxlanhdr *vh = vxlan_hdr(skb);
drivers/net/vxlan/vxlan_core.c
1647
const struct vxlanhdr *vh;
drivers/net/vxlan/vxlan_core.c
1817
struct vxlanhdr *hdr;
drivers/net/vxlan/vxlan_core.c
2177
static int vxlan_build_gpe_hdr(struct vxlanhdr *vxh, __be16 protocol)
drivers/net/vxlan/vxlan_core.c
2195
struct vxlanhdr *vxh;
drivers/net/vxlan/vxlan_core.c
2231
start = skb_checksum_start_offset(skb) - sizeof(struct vxlanhdr);
drivers/net/vxlan/vxlan_core.c
3443
[IFLA_VXLAN_RESERVED_BITS] = NLA_POLICY_EXACT_LEN(sizeof(struct vxlanhdr)),
drivers/net/vxlan/vxlan_core.c
4060
struct vxlanhdr used_bits = {
drivers/net/vxlan/vxlan_core.c
4313
struct vxlanhdr reserved_bits;
drivers/net/vxlan/vxlan_core.c
4344
conf->reserved_bits = (struct vxlanhdr) {
drivers/net/vxlan/vxlan_core.c
4555
nla_total_size(sizeof(struct vxlanhdr)) +
drivers/net/vxlan/vxlan_core.c
604
static bool vxlan_parse_gpe_proto(const struct vxlanhdr *hdr, __be16 *protocol)
drivers/net/vxlan/vxlan_core.c
630
static struct vxlanhdr *vxlan_gro_remcsum(struct sk_buff *skb,
drivers/net/vxlan/vxlan_core.c
632
struct vxlanhdr *vh, size_t hdrlen,
drivers/net/vxlan/vxlan_core.c
656
static struct vxlanhdr *vxlan_gro_prepare_receive(struct sock *sk,
drivers/net/vxlan/vxlan_core.c
662
struct vxlanhdr *vh, *vh2;
drivers/net/vxlan/vxlan_core.c
675
skb_gro_postpull_rcsum(skb, vh, sizeof(struct vxlanhdr));
drivers/net/vxlan/vxlan_core.c
680
vh = vxlan_gro_remcsum(skb, off_vx, vh, sizeof(struct vxlanhdr),
drivers/net/vxlan/vxlan_core.c
689
skb_gro_pull(skb, sizeof(struct vxlanhdr)); /* pull vxlan header */
drivers/net/vxlan/vxlan_core.c
695
vh2 = (struct vxlanhdr *)(p->data + off_vx);
drivers/net/vxlan/vxlan_core.c
729
struct vxlanhdr *vh;
drivers/net/vxlan/vxlan_core.c
753
return eth_gro_complete(skb, nhoff + sizeof(struct vxlanhdr));
drivers/net/vxlan/vxlan_core.c
758
struct vxlanhdr *vh = (struct vxlanhdr *)(skb->data + nhoff);
drivers/net/vxlan/vxlan_core.c
767
err = ptype->callbacks.gro_complete(skb, nhoff + sizeof(struct vxlanhdr));
include/net/vxlan.h
230
struct vxlanhdr reserved_bits;
include/net/vxlan.h
36
#define VXLAN_HLEN (sizeof(struct udphdr) + sizeof(struct vxlanhdr))
include/net/vxlan.h
387
sizeof(struct udphdr) + sizeof(struct vxlanhdr)) ||
include/net/vxlan.h
401
sizeof(struct udphdr) + sizeof(struct vxlanhdr) +
include/net/vxlan.h
405
static inline struct vxlanhdr *vxlan_hdr(struct sk_buff *skb)
include/net/vxlan.h
407
return (struct vxlanhdr *)(udp_hdr(skb) + 1);
include/net/vxlan.h
588
static inline void vxlan_build_gbp_hdr(struct vxlanhdr *vxh, const struct vxlan_metadata *md)