diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2013-03-20 05:14:30 (GMT) |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2013-03-20 05:15:07 (GMT) |
commit | cf994e0afae97382c0aa3cbc395805605d07a6e9 (patch) | |
tree | 00f90eefa7fbc34c5fb4d06b107af16ce84a74ac /tools/virtio/virtio_test.c | |
parent | 0b36f1adcb5adace6d45ca4d9a0f00860e60d012 (diff) | |
download | linux-cf994e0afae97382c0aa3cbc395805605d07a6e9.tar.xz |
tools/virtio: remove virtqueue_add_buf() from tests.
Make the rest of the paths use virtqueue_add_sgs or add_outbuf.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'tools/virtio/virtio_test.c')
-rw-r--r-- | tools/virtio/virtio_test.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/virtio/virtio_test.c b/tools/virtio/virtio_test.c index 814ae80..da7a195 100644 --- a/tools/virtio/virtio_test.c +++ b/tools/virtio/virtio_test.c @@ -166,9 +166,9 @@ static void run_test(struct vdev_info *dev, struct vq_info *vq, do { if (started < bufs) { sg_init_one(&sl, dev->buf, dev->buf_size); - r = virtqueue_add_buf(vq->vq, &sl, 1, 0, - dev->buf + started, - GFP_ATOMIC); + r = virtqueue_add_outbuf(vq->vq, &sl, 1, + dev->buf + started, + GFP_ATOMIC); if (likely(r == 0)) { ++started; virtqueue_kick(vq->vq); |