From: Zhiyong Yang Date: Thu, 12 Oct 2017 09:32:50 +0000 (+0800) Subject: app/pdump: fix port id type X-Git-Tag: spdx-start~1375 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=bcfa5579bc4d8b184987feeae8eae7d0adfc5f18;p=dpdk.git app/pdump: fix port id type Increase port id range to 16 bits and remove the unnecessary cast. Fixes: f8244c6399d9 ("ethdev: increase port id range") Signed-off-by: Zhiyong Yang --- diff --git a/app/pdump/main.c b/app/pdump/main.c index 090a50cfcd..3d8e502733 100644 --- a/app/pdump/main.c +++ b/app/pdump/main.c @@ -579,7 +579,7 @@ signal_handler(int sig_num) } static inline int -configure_vdev(uint8_t port_id) +configure_vdev(uint16_t port_id) { struct ether_addr addr; const uint16_t rxRings = 0, txRings = 1; @@ -609,7 +609,7 @@ configure_vdev(uint8_t port_id) rte_eth_macaddr_get(port_id, &addr); printf("Port %u MAC: %02"PRIx8" %02"PRIx8" %02"PRIx8 " %02"PRIx8" %02"PRIx8" %02"PRIx8"\n", - (unsigned)port_id, + port_id, addr.addr_bytes[0], addr.addr_bytes[1], addr.addr_bytes[2], addr.addr_bytes[3], addr.addr_bytes[4], addr.addr_bytes[5]);