From 81e0eeca43d4c61927e16e52fbc8556a71714e64 Mon Sep 17 00:00:00 2001 From: Cornelia Huck Date: Tue, 11 Jul 2017 13:34:08 +0200 Subject: virtio-net: fix virtqueue numbering error receiveq(n) is at position 2(n-1), not 2n. Same error for transmitq(n) and controlq. VIRTIO-161 Reviewed-by: Stefan Hajnoczi Reviewed-by: Halil Pasic Signed-off-by: Cornelia Huck --- content.tex | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content.tex b/content.tex index e57ebc5..51a00b2 100644 --- a/content.tex +++ b/content.tex @@ -3052,9 +3052,9 @@ features. \item[0] receiveq1 \item[1] transmitq1 \item[\ldots] -\item[2N] receiveqN -\item[2N+1] transmitqN -\item[2N+2] controlq +\item[2(N-1)] receiveqN +\item[2(N-1)+1] transmitqN +\item[2N] controlq \end{description} N=1 if VIRTIO_NET_F_MQ is not negotiated, otherwise N is set by -- cgit v1.2.3