summaryrefslogtreecommitdiff
path: root/ofproto
diff options
context:
space:
mode:
authorDuan Jiong <djduanjiong@gmail.com>2017-09-08 09:34:07 +0800
committerBen Pfaff <blp@ovn.org>2017-11-03 12:19:36 -0700
commit31f4a577fcc65f3d03adb34da51f92aee96d9cec (patch)
tree9349cdbcb0bc9c176e569bdcb0479af3e5e06099 /ofproto
parent28c6fbc5c94381bcbf772ddaad409cf2029587b6 (diff)
downloadopenvswitch-31f4a577fcc65f3d03adb34da51f92aee96d9cec.tar.gz
ofproto-dpif: Fix comment in struct ofbundle.
The ovs_list ports should contain struct ofport_dpif. Signed-off-by: Duan Jiong <djduanjiong@gmail.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
Diffstat (limited to 'ofproto')
-rw-r--r--ofproto/ofproto-dpif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ofproto/ofproto-dpif.c b/ofproto/ofproto-dpif.c
index 4bc942d5e..6daedddb5 100644
--- a/ofproto/ofproto-dpif.c
+++ b/ofproto/ofproto-dpif.c
@@ -92,7 +92,7 @@ struct ofbundle {
char *name; /* Identifier for log messages. */
/* Configuration. */
- struct ovs_list ports; /* Contains "struct ofport"s. */
+ struct ovs_list ports; /* Contains "struct ofport_dpif"s. */
enum port_vlan_mode vlan_mode; /* VLAN mode */
uint16_t qinq_ethtype;
int vlan; /* -1=trunk port, else a 12-bit VLAN ID. */