diff options
Diffstat (limited to 'drivers/vhost/net.c')
-rw-r--r-- | drivers/vhost/net.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/vhost/net.c b/drivers/vhost/net.c index 2bc8f298a4e7..971a760af4a1 100644 --- a/drivers/vhost/net.c +++ b/drivers/vhost/net.c | |||
@@ -374,7 +374,7 @@ static void handle_tx(struct vhost_net *net) | |||
374 | % UIO_MAXIOV == nvq->done_idx)) | 374 | % UIO_MAXIOV == nvq->done_idx)) |
375 | break; | 375 | break; |
376 | 376 | ||
377 | head = vhost_get_vq_desc(&net->dev, vq, vq->iov, | 377 | head = vhost_get_vq_desc(vq, vq->iov, |
378 | ARRAY_SIZE(vq->iov), | 378 | ARRAY_SIZE(vq->iov), |
379 | &out, &in, | 379 | &out, &in, |
380 | NULL, NULL); | 380 | NULL, NULL); |
@@ -506,7 +506,7 @@ static int get_rx_bufs(struct vhost_virtqueue *vq, | |||
506 | r = -ENOBUFS; | 506 | r = -ENOBUFS; |
507 | goto err; | 507 | goto err; |
508 | } | 508 | } |
509 | r = vhost_get_vq_desc(vq->dev, vq, vq->iov + seg, | 509 | r = vhost_get_vq_desc(vq, vq->iov + seg, |
510 | ARRAY_SIZE(vq->iov) - seg, &out, | 510 | ARRAY_SIZE(vq->iov) - seg, &out, |
511 | &in, log, log_num); | 511 | &in, log, log_num); |
512 | if (unlikely(r < 0)) | 512 | if (unlikely(r < 0)) |