app/testpmd: fix incompatible sign for printf arguments
The socket_id member of struct rte_port is an unsigned int while the d conversion specifier of printf expects an int. The addr_bytes member of struct ether_addr is an array of uint8_t while the X conversion specifier of printf expects an unsigned int. Values of type uint8_t are promoted to type int when used in the ellipsis notation of a function. These minor bugs were found using TrustInSoft Analyzer. Signed-off-by: Julien Cretin <julien.cretin@trust-in-soft.com> Acked-by: Thomas Monjalon <thomas.monjalon@6wind.com>
This commit is contained in:
parent
6f8d4ded4a
commit
5706de6533
@ -100,12 +100,12 @@ static void
|
||||
print_ethaddr(const char *name, struct ether_addr *eth_addr)
|
||||
{
|
||||
printf("%s%02X:%02X:%02X:%02X:%02X:%02X", name,
|
||||
eth_addr->addr_bytes[0],
|
||||
eth_addr->addr_bytes[1],
|
||||
eth_addr->addr_bytes[2],
|
||||
eth_addr->addr_bytes[3],
|
||||
eth_addr->addr_bytes[4],
|
||||
eth_addr->addr_bytes[5]);
|
||||
(unsigned int)eth_addr->addr_bytes[0],
|
||||
(unsigned int)eth_addr->addr_bytes[1],
|
||||
(unsigned int)eth_addr->addr_bytes[2],
|
||||
(unsigned int)eth_addr->addr_bytes[3],
|
||||
(unsigned int)eth_addr->addr_bytes[4],
|
||||
(unsigned int)eth_addr->addr_bytes[5]);
|
||||
}
|
||||
|
||||
void
|
||||
@ -256,7 +256,7 @@ port_infos_display(portid_t port_id)
|
||||
printf("\n%s Infos for port %-2d %s\n",
|
||||
info_border, port_id, info_border);
|
||||
print_ethaddr("MAC address: ", &port->eth_addr);
|
||||
printf("\nConnect to socket: %d", port->socket_id);
|
||||
printf("\nConnect to socket: %u", port->socket_id);
|
||||
|
||||
if (port_numa[port_id] != NUMA_NO_CONFIG) {
|
||||
mp = mbuf_pool_find(port_numa[port_id]);
|
||||
@ -264,7 +264,7 @@ port_infos_display(portid_t port_id)
|
||||
printf("\nmemory allocation on the socket: %d",
|
||||
port_numa[port_id]);
|
||||
} else
|
||||
printf("\nmemory allocation on the socket: %d",port->socket_id);
|
||||
printf("\nmemory allocation on the socket: %u",port->socket_id);
|
||||
|
||||
printf("\nLink status: %s\n", (link.link_status) ? ("up") : ("down"));
|
||||
printf("Link speed: %u Mbps\n", (unsigned) link.link_speed);
|
||||
|
@ -1250,7 +1250,7 @@ start_port(portid_t pid)
|
||||
if (port->need_reconfig > 0) {
|
||||
port->need_reconfig = 0;
|
||||
|
||||
printf("Configuring Port %d (socket %d)\n", pi,
|
||||
printf("Configuring Port %d (socket %u)\n", pi,
|
||||
port->socket_id);
|
||||
/* configure port */
|
||||
diag = rte_eth_dev_configure(pi, nb_rxq, nb_txq,
|
||||
|
Loading…
x
Reference in New Issue
Block a user