Skip to content

Commit

Permalink
virtio/tools: add delayed interupt mode
Browse files Browse the repository at this point in the history
Signed-off-by: Michael S. Tsirkin <[email protected]>
  • Loading branch information
mstsirkin committed May 2, 2012
1 parent e4ae004 commit 64d0988
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 4 deletions.
1 change: 1 addition & 0 deletions tools/virtio/linux/virtio.h
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@ void *virtqueue_get_buf(struct virtqueue *vq, unsigned int *len);
void virtqueue_disable_cb(struct virtqueue *vq);

bool virtqueue_enable_cb(struct virtqueue *vq);
bool virtqueue_enable_cb_delayed(struct virtqueue *vq);

void *virtqueue_detach_unused_buf(struct virtqueue *vq);
struct virtqueue *vring_new_virtqueue(unsigned int num,
Expand Down
26 changes: 22 additions & 4 deletions tools/virtio/virtio_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,8 @@ static void wait_for_interrupt(struct vdev_info *dev)
}
}

static void run_test(struct vdev_info *dev, struct vq_info *vq, int bufs)
static void run_test(struct vdev_info *dev, struct vq_info *vq,
bool delayed, int bufs)
{
struct scatterlist sl;
long started = 0, completed = 0;
Expand Down Expand Up @@ -183,8 +184,12 @@ static void run_test(struct vdev_info *dev, struct vq_info *vq, int bufs)
assert(started <= bufs);
if (completed == bufs)
break;
if (virtqueue_enable_cb(vq->vq)) {
wait_for_interrupt(dev);
if (delayed) {
if (virtqueue_enable_cb_delayed(vq->vq))
wait_for_interrupt(dev);
} else {
if (virtqueue_enable_cb(vq->vq))
wait_for_interrupt(dev);
}
}
test = 0;
Expand Down Expand Up @@ -215,6 +220,14 @@ const struct option longopts[] = {
.name = "no-indirect",
.val = 'i',
},
{
.name = "delayed-interrupt",
.val = 'D',
},
{
.name = "no-delayed-interrupt",
.val = 'd',
},
{
}
};
Expand All @@ -224,6 +237,7 @@ static void help()
fprintf(stderr, "Usage: virtio_test [--help]"
" [--no-indirect]"
" [--no-event-idx]"
" [--delayed-interrupt]"
"\n");
}

Expand All @@ -233,6 +247,7 @@ int main(int argc, char **argv)
unsigned long long features = (1ULL << VIRTIO_RING_F_INDIRECT_DESC) |
(1ULL << VIRTIO_RING_F_EVENT_IDX);
int o;
bool delayed = false;

for (;;) {
o = getopt_long(argc, argv, optstring, longopts, NULL);
Expand All @@ -251,6 +266,9 @@ int main(int argc, char **argv)
case 'i':
features &= ~(1ULL << VIRTIO_RING_F_INDIRECT_DESC);
break;
case 'D':
delayed = true;
break;
default:
assert(0);
break;
Expand All @@ -260,6 +278,6 @@ int main(int argc, char **argv)
done:
vdev_info_init(&dev, features);
vq_info_add(&dev, 256);
run_test(&dev, &dev.vqs[0], 0x100000);
run_test(&dev, &dev.vqs[0], delayed, 0x100000);
return 0;
}

0 comments on commit 64d0988

Please sign in to comment.