From: Vipin Varghese Date: Fri, 22 Dec 2017 04:38:20 +0000 (+0530) Subject: net/pcap: fix the NUMA id display in logs X-Git-Tag: spdx-start~343 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=c5097d53613779c156b548ee4097b59c3c8e611d;p=dpdk.git net/pcap: fix the NUMA id display in logs On single NUMA device the log information shows as boundary value instead of -1. The change brings in unsigned to signed. Fixes: 4c173302c307 ("pcap: add new driver") Signed-off-by: Vipin Varghese Acked-by: Ferruh Yigit --- diff --git a/drivers/net/pcap/rte_eth_pcap.c b/drivers/net/pcap/rte_eth_pcap.c index 3efb451a23..3385d04398 100644 --- a/drivers/net/pcap/rte_eth_pcap.c +++ b/drivers/net/pcap/rte_eth_pcap.c @@ -806,7 +806,7 @@ pmd_init_internals(struct rte_vdev_device *vdev, const char *name; name = rte_vdev_device_name(vdev); - RTE_LOG(INFO, PMD, "Creating pcap-backed ethdev on numa socket %u\n", + RTE_LOG(INFO, PMD, "Creating pcap-backed ethdev on numa socket %d\n", numa_node); /* now do all data allocation - for eth_dev structure @@ -1036,7 +1036,7 @@ pmd_pcap_remove(struct rte_vdev_device *dev) { struct rte_eth_dev *eth_dev = NULL; - RTE_LOG(INFO, PMD, "Closing pcap ethdev on numa socket %u\n", + RTE_LOG(INFO, PMD, "Closing pcap ethdev on numa socket %d\n", rte_socket_id()); if (!dev)