X-Git-Url: https://gerrit.fd.io/r/gitweb?p=vpp.git;a=blobdiff_plain;f=src%2Fvnet%2Finterface_format.c;h=c62e770e57b006ea24976493334553dca152d4f8;hp=df7e938894ab730e15e0b041f8de74fe6089a999;hb=5100aa9;hpb=abce509affe1f25bbb4905670371ad202529d5e0 diff --git a/src/vnet/interface_format.c b/src/vnet/interface_format.c index df7e938894a..c62e770e57b 100644 --- a/src/vnet/interface_format.c +++ b/src/vnet/interface_format.c @@ -77,6 +77,24 @@ format_vnet_hw_interface_rx_mode (u8 * s, va_list * args) return format (s, "unknown"); } +u8 * +format_vnet_hw_interface_link_speed (u8 * s, va_list * args) +{ + u32 link_speed = va_arg (*args, u32); + + if (link_speed == 0) + return format (s, "unknown"); + + if (link_speed >= 1000000) + return format (s, "%f Gbps", (f64) link_speed / 1000000); + + if (link_speed >= 1000) + return format (s, "%f Mbps", (f64) link_speed / 1000); + + return format (s, "%u Kbps", link_speed); +} + + u8 * format_vnet_hw_interface (u8 * s, va_list * args) { @@ -85,7 +103,7 @@ format_vnet_hw_interface (u8 * s, va_list * args) vnet_hw_interface_class_t *hw_class; vnet_device_class_t *dev_class; int verbose = va_arg (*args, int); - uword indent; + u32 indent; if (!hi) return format (s, "%=32s%=6s%=8s%s", "Name", "Idx", "Link", "Hardware"); @@ -115,6 +133,9 @@ format_vnet_hw_interface (u8 * s, va_list * args) else s = format (s, "%s%d", dev_class->name, hi->dev_instance); + s = format (s, "\n%ULink speed: %U", format_white_space, indent + 2, + format_vnet_hw_interface_link_speed, hi->link_speed); + if (verbose) { if (hw_class->format_device) @@ -165,16 +186,37 @@ format_vnet_sw_if_index_name (u8 * s, va_list * args) { vnet_main_t *vnm = va_arg (*args, vnet_main_t *); u32 sw_if_index = va_arg (*args, u32); - return format (s, "%U", - format_vnet_sw_interface_name, vnm, - vnet_get_sw_interface (vnm, sw_if_index)); + vnet_sw_interface_t *si; + + si = vnet_get_sw_interface_safe (vnm, sw_if_index); + + if (NULL == si) + { + return format (s, "DELETED"); + } + return format (s, "%U", format_vnet_sw_interface_name, vnm, si); +} + +u8 * +format_vnet_hw_if_index_name (u8 * s, va_list * args) +{ + vnet_main_t *vnm = va_arg (*args, vnet_main_t *); + u32 hw_if_index = va_arg (*args, u32); + vnet_hw_interface_t *hi; + + hi = vnet_get_hw_interface (vnm, hw_if_index); + + if (hi == 0) + return format (s, "DELETED"); + + return format (s, "%v", hi->name); } u8 * format_vnet_sw_interface_cntrs (u8 * s, vnet_interface_main_t * im, vnet_sw_interface_t * si) { - uword indent, n_printed; + u32 indent, n_printed; int i, j, n_counters; static vnet_main_t **my_vnet_mains; @@ -270,6 +312,16 @@ format_vnet_sw_interface_cntrs (u8 * s, vnet_interface_main_t * im, return s; } +static u8 * +format_vnet_sw_interface_mtu (u8 * s, va_list * args) +{ + vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *); + + return format (s, "%d/%d/%d/%d", si->mtu[VNET_MTU_L3], + si->mtu[VNET_MTU_IP4], + si->mtu[VNET_MTU_IP6], si->mtu[VNET_MTU_MPLS]); +} + u8 * format_vnet_sw_interface (u8 * s, va_list * args) { @@ -278,12 +330,14 @@ format_vnet_sw_interface (u8 * s, va_list * args) vnet_interface_main_t *im = &vnm->interface_main; if (!si) - return format (s, "%=32s%=5s%=16s%=16s%=16s", - "Name", "Idx", "State", "Counter", "Count"); + return format (s, "%=32s%=5s%=10s%=21s%=16s%=16s", + "Name", "Idx", "State", "MTU (L3/IP4/IP6/MPLS)", "Counter", + "Count"); - s = format (s, "%-32U%=5d%=16U", + s = format (s, "%-32U%=5d%=10U%=21U", format_vnet_sw_interface_name, vnm, si, si->sw_if_index, - format_vnet_sw_interface_flags, si->flags); + format_vnet_sw_interface_flags, si->flags, + format_vnet_sw_interface_mtu, si); s = format_vnet_sw_interface_cntrs (s, im, si);