X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fofp-print.c;h=9123f2f9379dc05484f91a1bc6693ffa3ee1b489;hb=95216219538e532732df6d2f51c0d7b69addae8c;hp=678962570b740d05f65162dea2b58793de795094;hpb=c90cfeaf1fb9902baa7f1d6702610c3cf4460def;p=sliver-openvswitch.git diff --git a/lib/ofp-print.c b/lib/ofp-print.c index 678962570..9123f2f93 100644 --- a/lib/ofp-print.c +++ b/lib/ofp-print.c @@ -843,6 +843,10 @@ ofp_print_flow_removed(struct ds *string, const struct ofp_header *oh) ds_put_format(string, " reason=%s", ofp_flow_removed_reason_to_string(fr.reason)); + if (fr.table_id != 255) { + ds_put_format(string, " table_id=%"PRIu8, fr.table_id); + } + if (fr.cookie != htonll(0)) { ds_put_format(string, " cookie:0x%"PRIx64, ntohll(fr.cookie)); }