app/compress-perf: fix socket ID type during init
authorRaja Zidane <rzidane@nvidia.com>
Wed, 2 Mar 2022 08:39:27 +0000 (10:39 +0200)
committerAkhil Goyal <gakhil@marvell.com>
Fri, 4 Mar 2022 09:49:14 +0000 (10:49 +0100)
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: stable@dpdk.org
Signed-off-by: Raja Zidane <rzidane@nvidia.com>
Acked-by: Matan Azrad <matan@nvidia.com>
app/test-compress-perf/main.c

index 6ff6a2f..3402b65 100644 (file)
@@ -168,7 +168,7 @@ comp_perf_initialize_compressdev(struct comp_test_data *test_data,
                cdev_id = enabled_cdevs[i];
 
                struct rte_compressdev_info cdev_info;
-               uint8_t socket_id = rte_compressdev_socket_id(cdev_id);
+               int socket_id = rte_compressdev_socket_id(cdev_id);
 
                rte_compressdev_info_get(cdev_id, &cdev_info);
                if (cdev_info.max_nb_queue_pairs &&