X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=lib%2Fvhost%2Frte_vhost_async.h;h=a87ea6ba37592f4013a8778f01c85ce88bd352eb;hb=6e858b4d9244cf53505589673755ab18ac2a4a83;hp=b25ff446f7497b5f2a581b23543827e2405d52d3;hpb=b737fd613969df722ddaa1cbcfd83aaad2441dbe;p=dpdk.git diff --git a/lib/vhost/rte_vhost_async.h b/lib/vhost/rte_vhost_async.h index b25ff446f7..a87ea6ba37 100644 --- a/lib/vhost/rte_vhost_async.h +++ b/lib/vhost/rte_vhost_async.h @@ -7,30 +7,25 @@ #include "rte_vhost.h" +/** + * iovec + */ +struct rte_vhost_iovec { + void *src_addr; + void *dst_addr; + size_t len; +}; + /** * iovec iterator */ struct rte_vhost_iov_iter { - /** offset to the first byte of interesting data */ - size_t offset; - /** total bytes of data in this iterator */ - size_t count; /** pointer to the iovec array */ - struct iovec *iov; + struct rte_vhost_iovec *iov; /** number of iovec in this iterator */ unsigned long nr_segs; }; -/** - * dma transfer descriptor pair - */ -struct rte_vhost_async_desc { - /** source memory iov_iter */ - struct rte_vhost_iov_iter *src; - /** destination memory iov_iter */ - struct rte_vhost_iov_iter *dst; -}; - /** * dma transfer status */ @@ -52,17 +47,17 @@ struct rte_vhost_async_channel_ops { * id of vhost device to perform data copies * @param queue_id * queue id to perform data copies - * @param descs - * an array of DMA transfer memory descriptors + * @param iov_iter + * an array of IOV iterators * @param opaque_data * opaque data pair sending to DMA engine * @param count * number of elements in the "descs" array * @return - * number of descs processed, negative value means error + * number of IOV iterators processed, negative value means error */ int32_t (*transfer_data)(int vid, uint16_t queue_id, - struct rte_vhost_async_desc *descs, + struct rte_vhost_iov_iter *iov_iter, struct rte_vhost_async_status *opaque_data, uint16_t count); /** @@ -83,15 +78,6 @@ struct rte_vhost_async_channel_ops { uint16_t max_packets); }; -/** - * inflight async packet information - */ -struct async_inflight_info { - struct rte_mbuf *mbuf; - uint16_t descs; /* num of descs inflight */ - uint16_t nr_buffers; /* num of buffers inflight for packed ring */ -}; - /** * async channel features */ @@ -103,7 +89,6 @@ enum { * async channel configuration */ struct rte_vhost_async_config { - uint32_t async_threshold; uint32_t features; uint32_t rsvd[2]; }; @@ -182,13 +167,9 @@ int rte_vhost_async_channel_unregister_thread_unsafe(int vid, uint16_t queue_id); /** - * This function submits enqueue data to async engine. Successfully - * enqueued packets can be transfer completed or being occupied by DMA - * engines, when this API returns. Transfer completed packets are returned - * in comp_pkts, so users need to guarantee its size is greater than or - * equal to the size of pkts; for packets that are successfully enqueued - * but not transfer completed, users should poll transfer status by - * rte_vhost_poll_enqueue_completed(). + * This function submits enqueue packets to async copy engine. Users + * need to poll transfer status by rte_vhost_poll_enqueue_completed() + * for successfully enqueued packets. * * @param vid * id of vhost device to enqueue data @@ -198,19 +179,12 @@ int rte_vhost_async_channel_unregister_thread_unsafe(int vid, * array of packets to be enqueued * @param count * packets num to be enqueued - * @param comp_pkts - * empty array to get transfer completed packets. Users need to - * guarantee its size is greater than or equal to that of pkts - * @param comp_count - * num of packets that are transfer completed, when this API returns. - * If no packets are transfer completed, its value is set to 0. * @return - * num of packets enqueued, including in-flight and transfer completed + * num of packets enqueued */ __rte_experimental uint16_t rte_vhost_submit_enqueue_burst(int vid, uint16_t queue_id, - struct rte_mbuf **pkts, uint16_t count, - struct rte_mbuf **comp_pkts, uint32_t *comp_count); + struct rte_mbuf **pkts, uint16_t count); /** * This function checks async completion status for a specific vhost