OASIS Open Mailing List Archives  ·  All Lists  ·  virtio  ·  2017-07

virtio — archive

[Date Prev]  |  [Thread Prev]  |  [Thread Next]  |  [Date Next]   —  [Date Index]  |  [Thread Index]  |  [Month Index]  |  [List Home]

[PATCH] virtio-net: fix virtqueue numbering error


receiveq(n) is at position 2(n-1)+1. Same error for transmitq(n) and controlq. VIRTIO-161 Signed-off-by: Cornelia Huck <[email protected]> --- content.tex 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content.tex b/content.tex index d8bde3a..2319729 100644 --- a/content.tex +++ b/content.tex @@ -3064,9 +3064,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[2(N-1)+2] controlq end{description} N=1 if VIRTIO_NET_F_MQ is not negotiated, otherwise N is set by -- 2.13.0

[Date Prev]  |  [Thread Prev]  |  [Thread Next]  |  [Date Next]   —  [Date Index]  |  [Thread Index]  |  [Month Index]  |  [List Home]