Lines Matching refs:exts
53 u32 exts; /* VXLAN_F_* in <net/vxlan.h> */ member
79 if (vxlan_port->exts & VXLAN_F_GBP && md->gbp) in vxlan_rcv()
100 if (vxlan_port->exts) { in vxlan_get_options()
101 struct nlattr *exts; in vxlan_get_options() local
103 exts = nla_nest_start(skb, OVS_TUNNEL_ATTR_EXTENSION); in vxlan_get_options()
104 if (!exts) in vxlan_get_options()
107 if (vxlan_port->exts & VXLAN_F_GBP && in vxlan_get_options()
111 nla_nest_end(skb, exts); in vxlan_get_options()
132 struct nlattr *exts[OVS_VXLAN_EXT_MAX+1]; in vxlan_configure_exts() local
139 err = nla_parse_nested(exts, OVS_VXLAN_EXT_MAX, attr, exts_policy); in vxlan_configure_exts()
145 if (exts[OVS_VXLAN_EXT_GBP]) in vxlan_configure_exts()
146 vxlan_port->exts |= VXLAN_F_GBP; in vxlan_configure_exts()
193 vxlan_port->exts); in vxlan_tnl_create()
256 vxflags = vxlan_port->exts | in vxlan_tnl_send()