410e3ba79da92e4ece97595bb8e2a1765aad2d40
[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 */