aboutsummaryrefslogtreecommitdiffstats
path: root/net/openvswitch/datapath.h
diff options
context:
space:
mode:
authorStephen Hemminger <stephen@networkplumber.org>2013-12-17 14:22:48 -0500
committerJesse Gross <jesse@nicira.com>2014-01-06 18:54:39 -0500
commit443cd88c8a31379e95326428bbbd40af25c1d440 (patch)
treea70bdb18d4518d40896f2ae0ecda9bbcf0626b57 /net/openvswitch/datapath.h
parent09c5e6054e206ecf13945f50711856a5cb2d5de1 (diff)
ovs: make functions local
Several functions and datastructures could be local Found with 'make namespacecheck' Signed-off-by: Stephen Hemminger <stephen@networkplumber.org> Signed-off-by: Jesse Gross <jesse@nicira.com>
Diffstat (limited to 'net/openvswitch/datapath.h')
-rw-r--r--net/openvswitch/datapath.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/net/openvswitch/datapath.h b/net/openvswitch/datapath.h
index 62619a4ee649..6be9fbb5e9cb 100644
--- a/net/openvswitch/datapath.h
+++ b/net/openvswitch/datapath.h
@@ -182,14 +182,12 @@ static inline struct vport *ovs_vport_ovsl(const struct datapath *dp, int port_n
182 182
183extern struct notifier_block ovs_dp_device_notifier; 183extern struct notifier_block ovs_dp_device_notifier;
184extern struct genl_family dp_vport_genl_family; 184extern struct genl_family dp_vport_genl_family;
185extern struct genl_multicast_group ovs_dp_vport_multicast_group;
186 185
187void ovs_dp_process_received_packet(struct vport *, struct sk_buff *); 186void ovs_dp_process_received_packet(struct vport *, struct sk_buff *);
188void ovs_dp_detach_port(struct vport *); 187void ovs_dp_detach_port(struct vport *);
189int ovs_dp_upcall(struct datapath *, struct sk_buff *, 188int ovs_dp_upcall(struct datapath *, struct sk_buff *,
190 const struct dp_upcall_info *); 189 const struct dp_upcall_info *);
191 190
192const char *ovs_dp_name(const struct datapath *dp);
193struct sk_buff *ovs_vport_cmd_build_info(struct vport *, u32 pid, u32 seq, 191struct sk_buff *ovs_vport_cmd_build_info(struct vport *, u32 pid, u32 seq,
194 u8 cmd); 192 u8 cmd);
195 193