2005-04-17 02:20:36 +04:00
|
|
|
#ifndef _IF_TUNNEL_H_
|
|
|
|
#define _IF_TUNNEL_H_
|
|
|
|
|
2008-10-09 22:59:55 +04:00
|
|
|
#include <linux/ip.h>
|
2009-10-08 00:57:10 +04:00
|
|
|
#include <linux/in6.h>
|
2012-10-13 13:46:48 +04:00
|
|
|
#include <uapi/linux/if_tunnel.h>
|
2012-11-12 01:52:33 +04:00
|
|
|
#include <linux/u64_stats_sync.h>
|
|
|
|
|
2012-11-12 01:52:34 +04:00
|
|
|
/*
|
|
|
|
* Locking : hash tables are protected by RCU and RTNL
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define for_each_ip_tunnel_rcu(pos, start) \
|
|
|
|
for (pos = rcu_dereference(start); pos; pos = rcu_dereference(pos->next))
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
#endif /* _IF_TUNNEL_H_ */
|