OASIS Open Mailing List Archives  ·  All Lists  ·  virtio  ·  2014-11

virtio — archive

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

[PATCH] virtio: fix used element size


General ring description lists alignment and size for used ring elements as 4, it must be 8. VIRTIO-120 Cc: "Dr. David Alan Gilbert" <[email protected]> Signed-off-by: Michael S. Tsirkin <[email protected]> --- content.tex 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content.tex b/content.tex index 91bf9f8..f319372 100644 --- a/content.tex +++ b/content.tex @@ -255,7 +255,7 @@ Descriptor Table & 16 & $16 * $(Queue Size) \ hline Available Ring & 2 & $6 + 2 * $(Queue Size) \ hline -Used Ring & 4 & $6 + 4 * $(Queue Size) \ +Used Ring & 8 & $6 + 8 * $(Queue Size) \ hline end{tabular} -- MST

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