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 <vipin.varghese@intel.com> Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>
This commit is contained in:
parent
721c662594
commit
c5097d5361
@ -806,7 +806,7 @@ pmd_init_internals(struct rte_vdev_device *vdev,
|
|||||||
const char *name;
|
const char *name;
|
||||||
|
|
||||||
name = rte_vdev_device_name(vdev);
|
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);
|
numa_node);
|
||||||
|
|
||||||
/* now do all data allocation - for eth_dev structure
|
/* 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;
|
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());
|
rte_socket_id());
|
||||||
|
|
||||||
if (!dev)
|
if (!dev)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user