aboutsummaryrefslogtreecommitdiff
path: root/lib/libvirtio
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2016-11-09 11:32:18 +0100
committerAlexey Kardashevskiy <aik@ozlabs.ru>2016-11-10 14:52:12 +1100
commitb294381e48ed9c3300e7aea4c4ba7f17729ffd9f (patch)
tree72cf566cc9fee01bb9abda9f11896e573ede98f8 /lib/libvirtio
parent7412f9e058132a9218827c23369b8cba33d756af (diff)
downloadSLOF-b294381e48ed9c3300e7aea4c4ba7f17729ffd9f.zip
SLOF-b294381e48ed9c3300e7aea4c4ba7f17729ffd9f.tar.gz
SLOF-b294381e48ed9c3300e7aea4c4ba7f17729ffd9f.tar.bz2
virtio: Fix stack comment of virtio-blk-read
The real parameters differ from the current stack comment. Signed-off-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Diffstat (limited to 'lib/libvirtio')
-rw-r--r--lib/libvirtio/virtio.code2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libvirtio/virtio.code b/lib/libvirtio/virtio.code
index 5cfffcc..971a3cf 100644
--- a/lib/libvirtio/virtio.code
+++ b/lib/libvirtio/virtio.code
@@ -64,7 +64,7 @@ PRIM(virtio_X2d_blk_X2d_shutdown)
virtioblk_shutdown(dev);
MIRP
-// : virtio-blk-read ( dev blkno cnt reg -- #read )
+// : virtio-blk-read ( buf blkno cnt dev -- #read )
PRIM(virtio_X2d_blk_X2d_read)
void *dev = TOS.a; POP;
long cnt = TOS.n; POP;