blob: 06d1d5badd36ec150c0456afea5b969c30dbc308 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _IF_TUNNEL_H_
2#define _IF_TUNNEL_H_
3
Herbert Xuc19e6542008-10-09 11:59:55 -07004#include <linux/ip.h>
Brian Haley125a77e2009-10-07 13:57:10 -07005#include <linux/in6.h>
David Howells607ca462012-10-13 10:46:48 +01006#include <uapi/linux/if_tunnel.h>
Amerigo Wangaa0010f2012-11-11 21:52:33 +00007#include <linux/u64_stats_sync.h>
8
9/* often modified stats are per cpu, other are shared (netdev->stats) */
10struct pcpu_tstats {
11 u64 rx_packets;
12 u64 rx_bytes;
13 u64 tx_packets;
14 u64 tx_bytes;
15 struct u64_stats_sync syncp;
16};
Masahide NAKAMURA6fd8bb82007-01-23 22:17:23 -080017
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#endif /* _IF_TUNNEL_H_ */