net/fm10k: fix port id type
authorZhiyong Yang <zhiyong.yang@intel.com>
Fri, 13 Oct 2017 13:16:56 +0000 (21:16 +0800)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 13 Oct 2017 19:57:48 +0000 (21:57 +0200)
The variable "port" should be defined as uint16_t, fix it here.

Fixes: f8244c6399d9 ("ethdev: increase port id range")

Signed-off-by: Zhiyong Yang <zhiyong.yang@intel.com>
drivers/net/fm10k/fm10k_rxtx.c

index c9bb04a..4e84926 100644 (file)
@@ -198,7 +198,7 @@ fm10k_recv_pkts(void *rx_queue, struct rte_mbuf **rx_pkts,
                                        q->alloc_thresh);
 
                if (unlikely(ret != 0)) {
-                       uint8_t port = q->port_id;
+                       uint16_t port = q->port_id;
                        PMD_RX_LOG(ERR, "Failed to alloc mbuf");
                        /*
                         * Need to restore next_dd if we cannot allocate new
@@ -356,7 +356,7 @@ fm10k_recv_scattered_pkts(void *rx_queue, struct rte_mbuf **rx_pkts,
                                        q->alloc_thresh);
 
                if (unlikely(ret != 0)) {
-                       uint8_t port = q->port_id;
+                       uint16_t port = q->port_id;
                        PMD_RX_LOG(ERR, "Failed to alloc mbuf");
                        /*
                         * Need to restore next_dd if we cannot allocate new