diff options
| author | Stefan Hajnoczi | 2017-06-28 20:47:21 +0200 |
|---|---|---|
| committer | Stefan Hajnoczi | 2017-06-30 12:03:45 +0200 |
| commit | 29509a7bbc6411c72d748bd636c434258bb0aef2 (patch) | |
| tree | e8455ceb689798ef5876681055b7cf559a10c072 /tests | |
| parent | libqos: add virtio used ring support (diff) | |
| download | qemu-29509a7bbc6411c72d748bd636c434258bb0aef2.tar.gz qemu-29509a7bbc6411c72d748bd636c434258bb0aef2.tar.xz qemu-29509a7bbc6411c72d748bd636c434258bb0aef2.zip | |
tests: fix virtio-scsi-test ISR dependence
Use the new used ring APIs instead of assuming ISR being set means the
request has completed.
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Fam Zheng <famz@redhat.com>
Tested-by: Eric Blake <eblake@redhat.com>
Tested-by: Kevin Wolf <kwolf@redhat.com>
Message-id: 20170628184724.21378-4-stefanha@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/virtio-scsi-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/virtio-scsi-test.c b/tests/virtio-scsi-test.c index eff71df81f..87a3b6e81a 100644 --- a/tests/virtio-scsi-test.c +++ b/tests/virtio-scsi-test.c @@ -121,7 +121,7 @@ static uint8_t virtio_scsi_do_command(QVirtIOSCSI *vs, const uint8_t *cdb, } qvirtqueue_kick(vs->dev, vq, free_head); - qvirtio_wait_queue_isr(vs->dev, vq, QVIRTIO_SCSI_TIMEOUT_US); + qvirtio_wait_used_elem(vs->dev, vq, free_head, QVIRTIO_SCSI_TIMEOUT_US); response = readb(resp_addr + offsetof(struct virtio_scsi_cmd_resp, response)); |
