RE: [EXT] [PATCH] app/compress-perf: fix socket ID type during init

2022-03-04 Thread Akhil Goyal
> Socket ID is obtained by function rte_compressdev_socket_id, which > returns it as integer, but is interpreted as unsigned byte integer. > > change type from uint8_t to int. > > Fixes: ed7dd94f7f66 ("compressdev: add basic device management") > Cc: fiona.tr...@intel.com > Cc: sta...@dpdk.org >

[PATCH] app/compress-perf: fix socket ID type during init

2022-03-02 Thread Raja Zidane
Socket ID is obtained by function rte_compressdev_socket_id, which returns it as integer, but is interpreted as unsigned byte integer. change type from uint8_t to int. Fixes: ed7dd94f7f66 ("compressdev: add basic device management") Cc: fiona.tr...@intel.com Cc: sta...@dpdk.org Signed-off-by: Ra