Lines Matching full:datapath
29 * datapath.
34 * been received by the datapath.
37 * one of the datapath's queues).
54 * struct dp_nlsk_pids - array of netlink portids of for a datapath.
69 * struct datapath - datapath for flow-based packet switching
75 * @stats_percpu: Per-CPU datapath statistics.
77 * @max_headroom: the maximum headroom of all vports in this datapath; it will
81 * Context: See the comment on locking at the top of datapath.c for additional
84 struct datapath { struct
136 * then no packet is sent and the packet is accounted in the datapath's @n_lost
193 static inline struct net *ovs_dp_get_net(const struct datapath *dp) in ovs_dp_get_net()
198 static inline void ovs_dp_set_net(struct datapath *dp, struct net *net) in ovs_dp_set_net()
203 struct vport *ovs_lookup_vport(const struct datapath *dp, u16 port_no);
205 static inline struct vport *ovs_vport_rcu(const struct datapath *dp, int port_no) in ovs_vport_rcu()
211 static inline struct vport *ovs_vport_ovsl_rcu(const struct datapath *dp, int port_no) in ovs_vport_ovsl_rcu()
217 static inline struct vport *ovs_vport_ovsl(const struct datapath *dp, int port_no) in ovs_vport_ovsl()
224 static inline struct datapath *get_dp_rcu(struct net *net, int dp_ifindex) in get_dp_rcu()
241 static inline struct datapath *get_dp(struct net *net, int dp_ifindex) in get_dp()
243 struct datapath *dp; in get_dp()
258 int ovs_dp_upcall(struct datapath *, struct sk_buff *,
262 u32 ovs_dp_get_upcall_portid(const struct datapath *dp, uint32_t cpu_id);
264 const char *ovs_dp_name(const struct datapath *dp);
268 int ovs_execute_actions(struct datapath *dp, struct sk_buff *skb,
285 #endif /* datapath.h */