6 #include <uapi/linux/if_tunnel.h>
7 #include <linux/u64_stats_sync.h>
10 * Locking : hash tables are protected by RCU and RTNL
13 #define for_each_ip_tunnel_rcu(pos, start) \
14 for (pos = rcu_dereference(start); pos; pos = rcu_dereference(pos->next))
16 /* often modified stats are per cpu, other are shared (netdev->stats) */
22 struct u64_stats_sync syncp;
25 #endif /* _IF_TUNNEL_H_ */