2 * Copyright (c) 2009, 2010, 2011 Nicira Networks.
3 * Distributed under the terms of the GNU GPL version 2.
5 * Significant portions of this file may be copied from parts of the Linux
6 * kernel, by Linus Torvalds and others.
12 #include <linux/skbuff.h>
13 #include <linux/version.h>
19 int execute_actions(struct datapath *dp, struct sk_buff *skb);
21 static inline void skb_clear_rxhash(struct sk_buff *skb)
23 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,35)
28 #endif /* actions.h */