net/bnxt: consolidate template table processing
[dpdk.git] / drivers / net / virtio / virtio_rxtx_simple_neon.c
index a9b6498..12e034d 100644 (file)
@@ -36,8 +36,9 @@
  * - nb_pkts < RTE_VIRTIO_DESC_PER_LOOP, just return no packet
  */
 uint16_t
-virtio_recv_pkts_vec(void *rx_queue, struct rte_mbuf
-               **__rte_restrict rx_pkts, uint16_t nb_pkts)
+virtio_recv_pkts_vec(void *rx_queue,
+               struct rte_mbuf **__rte_restrict rx_pkts,
+               uint16_t nb_pkts)
 {
        struct virtnet_rx *rxvq = rx_queue;
        struct virtqueue *vq = rxvq->vq;
@@ -83,7 +84,7 @@ virtio_recv_pkts_vec(void *rx_queue, struct rte_mbuf
        if (unlikely(nb_pkts < RTE_VIRTIO_DESC_PER_LOOP))
                return 0;
 
-       /* virtqueue_nused has a load-acquire or rte_cio_rmb inside */
+       /* virtqueue_nused has a load-acquire or rte_io_rmb inside */
        nb_used = virtqueue_nused(vq);
 
        if (unlikely(nb_used == 0))