Expand tabs to spaces in dp_send_flow_stats.
[openvswitch] / datapath / forward.h
1 #ifndef FORWARD_H
2 #define FORWARD_H 1
3
4 #include <linux/types.h>
5 #include "flow.h"
6
7 struct sk_buff;
8 struct sw_chain;
9 struct ofp_action;
10 struct sender;
11
12 /* Buffers are identified to userspace by a 31-bit opaque ID.  We divide the ID
13  * into a buffer number (low bits) and a cookie (high bits).  The buffer number
14  * is an index into an array of buffers.  The cookie distinguishes between
15  * different packets that have occupied a single buffer.  Thus, the more
16  * buffers we have, the lower-quality the cookie... */
17 #define PKT_BUFFER_BITS 8
18 #define N_PKT_BUFFERS (1 << PKT_BUFFER_BITS)
19 #define PKT_BUFFER_MASK (N_PKT_BUFFERS - 1)
20
21 #define PKT_COOKIE_BITS (32 - PKT_BUFFER_BITS)
22
23
24 void fwd_port_input(struct sw_chain *, struct sk_buff *, int in_port);
25 int fwd_control_input(struct sw_chain *, const struct sender *,
26                       const void *, size_t);
27
28 uint32_t fwd_save_skb(struct sk_buff *skb);
29
30 void fwd_exit(void);
31
32 struct sk_buff *execute_setter(struct sk_buff *, uint16_t,
33                         const struct sw_flow_key *, const struct ofp_action *);
34
35 #endif /* forward.h */