Searched defs:vni (Results 1 - 2 of 2) sorted by relevance

/net/openvswitch/
H A Dvport-geneve.c54 static void tunnel_id_to_vni(__be64 tun_id, __u8 *vni) argument
57 vni[0] = (__force __u8)(tun_id >> 16);
58 vni[1] = (__force __u8)(tun_id >> 8);
59 vni[2] = (__force __u8)tun_id;
61 vni[0] = (__force __u8)((__force u64)tun_id >> 40);
62 vni[1] = (__force __u8)((__force u64)tun_id >> 48);
63 vni[2] = (__force __u8)((__force u64)tun_id >> 56);
68 static __be64 vni_to_tunnel_id(__u8 *vni) argument
71 return (vni[0] << 16) | (vni[
178 u8 vni[3]; local
[all...]
/net/ipv4/
H A Dgeneve.c92 __be16 tun_flags, u8 vni[3],
100 memcpy(geneveh->vni, vni, 3);
117 __be16 tun_flags, u8 vni[3], u8 opt_len, u8 *opt,
145 geneve_build_header(gnvh, tun_flags, vni, opt_len, opt);
91 geneve_build_header(struct genevehdr *geneveh, __be16 tun_flags, u8 vni[3], u8 options_len, u8 *options) argument
114 geneve_xmit_skb(struct geneve_sock *gs, struct rtable *rt, struct sk_buff *skb, __be32 src, __be32 dst, __u8 tos, __u8 ttl, __be16 df, __be16 src_port, __be16 dst_port, __be16 tun_flags, u8 vni[3], u8 opt_len, u8 *opt, bool xnet) argument

Completed in 158 milliseconds