Commit 652e4f3e authored by Jason Wang's avatar Jason Wang Committed by David S. Miller

vhost_net: drop unnecessary parameter

Signed-off-by: default avatarJason Wang <jasowang@redhat.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 0ae0d60a
...@@ -430,7 +430,6 @@ static int vhost_net_enable_vq(struct vhost_net *n, ...@@ -430,7 +430,6 @@ static int vhost_net_enable_vq(struct vhost_net *n,
static int vhost_net_tx_get_vq_desc(struct vhost_net *net, static int vhost_net_tx_get_vq_desc(struct vhost_net *net,
struct vhost_virtqueue *vq, struct vhost_virtqueue *vq,
struct iovec iov[], unsigned int iov_size,
unsigned int *out_num, unsigned int *in_num, unsigned int *out_num, unsigned int *in_num,
bool *busyloop_intr) bool *busyloop_intr)
{ {
...@@ -512,9 +511,8 @@ static void handle_tx(struct vhost_net *net) ...@@ -512,9 +511,8 @@ static void handle_tx(struct vhost_net *net)
vhost_zerocopy_signal_used(net, vq); vhost_zerocopy_signal_used(net, vq);
busyloop_intr = false; busyloop_intr = false;
head = vhost_net_tx_get_vq_desc(net, vq, vq->iov, head = vhost_net_tx_get_vq_desc(net, vq, &out, &in,
ARRAY_SIZE(vq->iov), &busyloop_intr);
&out, &in, &busyloop_intr);
/* On error, stop handling until the next kick. */ /* On error, stop handling until the next kick. */
if (unlikely(head < 0)) if (unlikely(head < 0))
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment