From: Tiwei Bie Date: Tue, 13 Aug 2019 02:07:26 +0000 (+0800) Subject: doc: fix typo in virtio in-order Rx function name X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=3afba6e92e1797934181093879b2f4bd2f23ad1b;p=dpdk.git doc: fix typo in virtio in-order Rx function name The Rx function that will be used when in-order is enabled should be virtio_recv_mergeable_pkts_inorder() instead of virtio_xmit_pkts_inorder(). Fixes: 8f3bd7e8702d ("net/virtio: add in-order Rx/Tx into selection") Cc: stable@dpdk.org Signed-off-by: Tiwei Bie Reviewed-by: Maxime Coquelin --- diff --git a/doc/guides/nics/virtio.rst b/doc/guides/nics/virtio.rst index da9cd6ba64..08438d0646 100644 --- a/doc/guides/nics/virtio.rst +++ b/doc/guides/nics/virtio.rst @@ -251,7 +251,7 @@ Example of using the vector version of the virtio poll mode driver in In-order callbacks only work on simulated virtio user vdev. * For Rx: If mergeable Rx buffers is enabled and in-order is enabled then - ``virtio_xmit_pkts_inorder`` is used. + ``virtio_recv_mergeable_pkts_inorder`` is used. * For Tx: If in-order is enabled then ``virtio_xmit_pkts_inorder`` is used.