Signed-off-by: Andy Zhou <az...@nicira.com> --- ofproto/bond.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/ofproto/bond.c b/ofproto/bond.c index b100e19..2905464 100644 --- a/ofproto/bond.c +++ b/ofproto/bond.c @@ -1094,15 +1094,15 @@ bond_unixctl_list(struct unixctl_conn *conn, struct ds ds = DS_EMPTY_INITIALIZER; const struct bond *bond; - ds_put_cstr(&ds, "bond\ttype\tslaves\n"); + ds_put_cstr(&ds, "bond\ttype\trecircID\tslaves\n"); ovs_rwlock_rdlock(&rwlock); HMAP_FOR_EACH (bond, hmap_node, all_bonds) { const struct bond_slave *slave; size_t i; - ds_put_format(&ds, "%s\t%s\t", - bond->name, bond_mode_to_string(bond->balance)); + ds_put_format(&ds, "%s\t%s\t%d\t", bond->name, + bond_mode_to_string(bond->balance), bond->recirc_id); i = 0; HMAP_FOR_EACH (slave, hmap_node, &bond->slaves) { -- 1.7.9.5 _______________________________________________ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev