Re: [dpdk-dev] [PATCH v1] [net/pcap] fix the NUMA id display in logs.

2018-01-11 Thread Ferruh Yigit
On 1/11/2018 6:06 PM, Ferruh Yigit wrote: > On 12/22/2017 4:38 AM, Vipin Varghese wrote: >> On single NUMA device the log information shows as boundary value >> instead of -1. The change brings in unsinged to signed. >> >> Signed-off-by: Vipin Varghese > > Acked-by: Ferruh Yigit Applied to dpdk

Re: [dpdk-dev] [PATCH v1] [net/pcap] fix the NUMA id display in logs.

2018-01-11 Thread Ferruh Yigit
On 12/22/2017 4:38 AM, Vipin Varghese wrote: > On single NUMA device the log information shows as boundary value > instead of -1. The change brings in unsinged to signed. > > Signed-off-by: Vipin Varghese Acked-by: Ferruh Yigit

[dpdk-dev] [PATCH v1] [net/pcap] fix the NUMA id display in logs.

2017-12-21 Thread Vipin Varghese
On single NUMA device the log information shows as boundary value instead of -1. The change brings in unsinged to signed. Signed-off-by: Vipin Varghese --- drivers/net/pcap/rte_eth_pcap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/pcap/rte_eth_pcap.c b/dr