Release 4.12 include/linux/if_tunnel.h
#ifndef _IF_TUNNEL_H_
#define _IF_TUNNEL_H_
#include <linux/ip.h>
#include <linux/in6.h>
#include <uapi/linux/if_tunnel.h>
#include <linux/u64_stats_sync.h>
/*
* 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))
#endif /* _IF_TUNNEL_H_ */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Américo Wang | 14 | 43.75% | 2 | 25.00% |
Linus Torvalds (pre-git) | 7 | 21.88% | 1 | 12.50% |
David Howells | 3 | 9.38% | 1 | 12.50% |
Brian Haley | 2 | 6.25% | 1 | 12.50% |
Herbert Xu | 2 | 6.25% | 1 | 12.50% |
David S. Miller | 2 | 6.25% | 1 | 12.50% |
Masahide Nakamura | 2 | 6.25% | 1 | 12.50% |
Total | 32 | 100.00% | 8 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.