Lines Matching defs:vxlan_dev
115 struct vxlan_dev { struct
116 struct hlist_node hlist; /* vni hash table */
117 struct list_head next; /* vxlan's per namespace list */
118 struct vxlan_sock *vn_sock; /* listening socket */
119 struct net_device *dev;
120 struct net *net; /* netns for packet i/o */
121 struct vxlan_rdst default_dst; /* default destination */
122 union vxlan_addr saddr; /* source address */
123 __be16 dst_port;
124 __u16 port_min; /* source port range */
125 __u16 port_max;
126 __u8 tos; /* TOS override */
127 __u8 ttl;
128 u32 flags; /* VXLAN_F_* in vxlan.h */
130 unsigned long age_interval;
131 struct timer_list age_timer;
132 spinlock_t hash_lock;
133 unsigned int addrcnt;
134 unsigned int addrmax;
136 struct hlist_head fdb_head[FDB_HASH_SIZE];