From 1f8697c4b68c81766a7b9734e816ebfccffb3edc Mon Sep 17 00:00:00 2001 From: Milan Lenco Date: Fri, 4 May 2018 09:00:18 +0200 Subject: [PATCH] Fix API trace dump for tapv2 Change-Id: Ib092da61ba037ea30c6f38ea692ef9f1ca0cd8e7 Signed-off-by: Milan Lenco --- src/vpp/api/custom_dump.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/vpp/api/custom_dump.c b/src/vpp/api/custom_dump.c index 99ad18978e5..4c88b8ff959 100644 --- a/src/vpp/api/custom_dump.c +++ b/src/vpp/api/custom_dump.c @@ -561,7 +561,7 @@ static void *vl_api_tap_create_v2_t_print memset (null_mac, 0, sizeof (null_mac)); s = format (0, "SCRIPT: tap_create_v2 "); - s = format (s, "id %u ", mp->id); + s = format (s, "id %u ", ntohl (mp->id)); if (memcmp (mp->mac_address, null_mac, 6)) s = format (s, "mac-address %U ", format_ethernet_address, mp->mac_address); @@ -585,9 +585,9 @@ static void *vl_api_tap_create_v2_t_print if (mp->host_ip6_gw_set) s = format (s, "host-ip6-gw %U ", format_ip6_address, mp->host_ip6_addr); if (mp->tx_ring_sz) - s = format (s, "tx-ring-size %d ", mp->tx_ring_sz); + s = format (s, "tx-ring-size %u ", ntohs (mp->tx_ring_sz)); if (mp->rx_ring_sz) - s = format (s, "rx-ring-size %d ", mp->rx_ring_sz); + s = format (s, "rx-ring-size %u ", ntohs (mp->rx_ring_sz)); FINISH; } -- 2.16.6