OASIS Virtual I/O Device (VIRTIO) TC

[PATCH v2] virtio: fix used element size

  • 1.  [PATCH v2] virtio: fix used element size

    Posted 12-23-2014 20:48
    General ring description lists size for used ring elements as 4, it must be 8. VIRTIO-120 Cc: "Dr. David Alan Gilbert" <dgilbert@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com> git-svn-id: https://tools.oasis-open.org/version-control/svn/virtio/branches/v1.0@448 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652 --- Note: v1 also changed alignment, alignment is actually correct in the original document. This one is non-material since used element size is correctly documented as 8 elsewhere. content.tex 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content.tex b/content.tex index 91bf9f8..c105e8a 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 & 4 & $6 + 8 * $(Queue Size) \ hline end{tabular} -- MST