Prepare Open vSwitch 1.1.2 release.
[sliver-openvswitch.git] / datapath / actions.h
1 /*
2  * Copyright (c) 2009, 2010 Nicira Networks.
3  * Distributed under the terms of the GNU GPL version 2.
4  *
5  * Significant portions of this file may be copied from parts of the Linux
6  * kernel, by Linus Torvalds and others.
7  */
8
9 #ifndef ACTIONS_H
10 #define ACTIONS_H 1
11
12 #include <linux/skbuff.h>
13 #include <linux/version.h>
14
15 struct datapath;
16 struct sk_buff;
17 struct sw_flow_key;
18
19 int execute_actions(struct datapath *dp, struct sk_buff *skb,
20                     const struct sw_flow_key *,
21                     const struct nlattr *, u32 actions_len);
22
23 static inline void skb_clear_rxhash(struct sk_buff *skb)
24 {
25 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,35)
26         skb->rxhash = 0;
27 #endif
28 }
29
30 #endif /* actions.h */