eventdev: fix build on RHEL 7
authorPavan Nikhilesh <pbhagavatula@marvell.com>
Tue, 13 Apr 2021 22:16:12 +0000 (03:46 +0530)
committerDavid Marchand <david.marchand@redhat.com>
Wed, 14 Apr 2021 08:02:05 +0000 (10:02 +0200)
Since queue identifier is passed as signed integer, a compilation error
is generated:
rte_event_eth_rx_adapter.c:1810:57: error: signed and unsigned type
in conditional expression [-Werror=sign-compare]
Make queue identifier as unsigned when adding it to vector data.

Bugzilla ID: 672
Fixes: d7c428e557ba ("eventdev: support Rx adapter event vector")

Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com>
Acked-by: David Marchand <david.marchand@redhat.com>
Acked-by: Jerin Jacob <jerinj@marvell.com>
lib/librte_eventdev/rte_event_eth_rx_adapter.c

index e273b3a..ca166a6 100644 (file)
@@ -1790,7 +1790,7 @@ rxa_update_queue(struct rte_event_eth_rx_adapter *rx_adapter,
 
 static void
 rxa_set_vector_data(struct eth_rx_queue_info *queue_info, uint16_t vector_count,
-                   uint64_t vector_ns, struct rte_mempool *mp, int32_t qid,
+                   uint64_t vector_ns, struct rte_mempool *mp, uint32_t qid,
                    uint16_t port_id)
 {
 #define NSEC2TICK(__ns, __freq) (((__ns) * (__freq)) / 1E9)