Import from old repository commit 61ef2b42a9c4ba8e1600f15bb0236765edc2ad45.
[openvswitch] / datapath / actions.h
1 #ifndef ACTIONS_H
2 #define ACTIONS_H 1
3
4 #include <linux/gfp.h>
5
6 struct datapath;
7 struct sk_buff;
8 struct odp_flow_key;
9 union odp_action;
10
11 struct sk_buff *make_writable(struct sk_buff *, gfp_t gfp);
12 int dp_xmit_skb(struct sk_buff *);
13 int execute_actions(struct datapath *dp, struct sk_buff *skb,
14                     struct odp_flow_key *key,
15                     const union odp_action *, int n_actions,
16                     gfp_t gfp);
17
18 #endif /* actions.h */