>From 415ad9ffdb57a012729bef4ff19d1dc7b5b4cbcd Mon Sep 17 00:00:00 2001 From: Duan Jiong <[email protected]> Date: Fri, 8 Sep 2017 09:30:31 +0800 Subject: [PATCH] fix the comment in struct ofbundle
the ovs_list ports should contain struct ofport_dpif Signed-off-by: Duan Jiong <[email protected]> --- ofproto/ofproto-dpif.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ofproto/ofproto-dpif.c b/ofproto/ofproto-dpif.c index 1a8e829..59927eb 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. */ -- 1.9.1 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
