kmemtrace: SLOB hooks.
[linux-2.6/kmemtrace.git] / include / net / ipip.h
blob633ed4def8e3ab2fb27d3c0b964df23b0438d9e2
1 #ifndef __NET_IPIP_H
2 #define __NET_IPIP_H 1
4 #include <linux/if_tunnel.h>
5 #include <net/ip.h>
7 /* Keep error state on tunnel for 30 sec */
8 #define IPTUNNEL_ERR_TIMEO (30*HZ)
10 struct ip_tunnel
12 struct ip_tunnel *next;
13 struct net_device *dev;
14 struct net_device_stats stat;
16 int recursion; /* Depth of hard_start_xmit recursion */
17 int err_count; /* Number of arrived ICMP errors */
18 unsigned long err_time; /* Time when the last ICMP error arrived */
20 /* These four fields used only by GRE */
21 __u32 i_seqno; /* The last seen seqno */
22 __u32 o_seqno; /* The last output seqno */
23 int hlen; /* Precalculated GRE header length */
24 int mlink;
26 struct ip_tunnel_parm parms;
28 struct ip_tunnel_prl_entry *prl; /* potential router list */
29 unsigned int prl_count; /* # of entries in PRL */
32 struct ip_tunnel_prl_entry
34 struct ip_tunnel_prl_entry *next;
35 __be32 addr;
36 u16 flags;
39 #define IPTUNNEL_XMIT() do { \
40 int err; \
41 int pkt_len = skb->len; \
43 skb->ip_summed = CHECKSUM_NONE; \
44 ip_select_ident(iph, &rt->u.dst, NULL); \
46 err = ip_local_out(skb); \
47 if (net_xmit_eval(err) == 0) { \
48 stats->tx_bytes += pkt_len; \
49 stats->tx_packets++; \
50 } else { \
51 stats->tx_errors++; \
52 stats->tx_aborted_errors++; \
53 } \
54 } while (0)
56 #endif