datapath: support Linux 3.7
[sliver-openvswitch.git] / datapath / vport.h
index de65000..3cea3a0 100644 (file)
@@ -79,7 +79,7 @@ struct vport_err_stats {
  * @linkname: The name of the link from /sys/class/net/<datapath>/brif to this
  * &struct vport.  (We keep this around so that we can delete it if the
  * device gets renamed.)  Set to the null string when no link exists.
- * @upcall_pid: The Netlink port to use for packets received on this port that
+ * @upcall_portid: The Netlink port to use for packets received on this port that
  * miss the flow table.
  * @port_no: Index into @dp's @ports array.
  * @hash_node: Element in @dev_table hash table in vport.c.
@@ -96,7 +96,7 @@ struct vport {
        struct datapath *dp;
        struct kobject kobj;
        char linkname[IFNAMSIZ];
-       u32 upcall_pid;
+       u32 upcall_portid;
        u16 port_no;
 
        struct hlist_node hash_node;
@@ -132,7 +132,7 @@ struct vport_parms {
        /* For ovs_vport_alloc(). */
        struct datapath *dp;
        u16 port_no;
-       u32 upcall_pid;
+       u32 upcall_portid;
 };
 
 /**
@@ -257,5 +257,6 @@ extern const struct vport_ops ovs_gre_vport_ops;
 extern const struct vport_ops ovs_gre_ft_vport_ops;
 extern const struct vport_ops ovs_gre64_vport_ops;
 extern const struct vport_ops ovs_capwap_vport_ops;
+extern const struct vport_ops ovs_vxlan_vport_ops;
 
 #endif /* vport.h */