X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Fflow%2Fflow_cli.c;h=27f2d386279a36bf0fb12c34b5c8fb53f2372a22;hb=d3de756a8bcda21ed37b87df7b1c77edaee3459b;hp=11f3bcfad97bb847233569b0dd06c8828fff2aae;hpb=3a0325f9cab7838c21b19698b89cfc65e3236085;p=vpp.git diff --git a/src/vnet/flow/flow_cli.c b/src/vnet/flow/flow_cli.c index 11f3bcfad97..27f2d386279 100644 --- a/src/vnet/flow/flow_cli.c +++ b/src/vnet/flow/flow_cli.c @@ -90,6 +90,30 @@ format_flow_actions (u8 * s, va_list * args) return s; } +u8 * +format_flow_enabled_hw (u8 * s, va_list * args) +{ + u32 flow_index = va_arg (*args, u32); + vnet_flow_t *f = vnet_get_flow (flow_index); + if (f == 0) + return format (s, "not found"); + + u8 *t = 0; + u32 hw_if_index; + uword private_data; + vnet_main_t *vnm = vnet_get_main (); + /* *INDENT-OFF* */ + hash_foreach (hw_if_index, private_data, f->private_data, + ({ + t = format (t, "%s%U", t ? ", " : "", + format_vnet_hw_if_index_name, vnm, hw_if_index); + })); + /* *INDENT-ON* */ + s = format (s, "%v", t); + vec_free (t); + return s; +} + static const char *flow_type_strings[] = { 0, #define _(a,b,c) c, foreach_flow_type