From 4e413ac88d4841d7e17de3e36bba3fa12796e938 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Wed, 29 Aug 2018 11:30:13 -0700 Subject: ovs-vswitchd: Implement OFPT_TABLE_FEATURES table modification request. This allows a controller to change the name of OpenFlow flow tables in the OVS software switch. CC: Brad Cowie Acked-by: Justin Pettit Signed-off-by: Ben Pfaff --- lib/ofp-print.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'lib/ofp-print.c') diff --git a/lib/ofp-print.c b/lib/ofp-print.c index 789b40a3c..9c8851590 100644 --- a/lib/ofp-print.c +++ b/lib/ofp-print.c @@ -234,9 +234,8 @@ ofp_print_table_features_reply(struct ds *s, const struct ofp_header *oh) int first_ditto = -1, last_ditto = -1; for (int i = 0; ; i++) { struct ofputil_table_features tf; - int retval; - - retval = ofputil_decode_table_features(&b, &tf, true); + struct ofpbuf raw_properties; + int retval = ofputil_decode_table_features(&b, &tf, &raw_properties); if (retval) { ofputil_table_features_format_finish(s, first_ditto, last_ditto); return retval != EOF ? retval : 0; -- cgit v1.2.1