Skip to content
This repository has been archived by the owner on Dec 20, 2023. It is now read-only.

Commit

Permalink
virtio-net: introduce virtnet_receive()
Browse files Browse the repository at this point in the history
Move common receive logic to a new helper virtnet_receive(). It will
also be used by rx busy polling method.

Cc: Rusty Russell <rusty@rustcorp.com.au>
Cc: Michael S. Tsirkin <mst@redhat.com>
Cc: Vlad Yasevich <vyasevic@redhat.com>
Cc: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
jasowang authored and davem330 committed Jul 23, 2014
1 parent 96b3bff commit 2ffa759
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions drivers/net/virtio_net.c
Original file line number Diff line number Diff line change
Expand Up @@ -725,15 +725,12 @@ static void refill_work(struct work_struct *work)
}
}

static int virtnet_poll(struct napi_struct *napi, int budget)
static int virtnet_receive(struct receive_queue *rq, int budget)
{
struct receive_queue *rq =
container_of(napi, struct receive_queue, napi);
struct virtnet_info *vi = rq->vq->vdev->priv;
unsigned int len, received = 0;
void *buf;
unsigned int r, len, received = 0;

again:
while (received < budget &&
(buf = virtqueue_get_buf(rq->vq, &len)) != NULL) {
receive_buf(rq, buf, len);
Expand All @@ -745,6 +742,18 @@ static int virtnet_poll(struct napi_struct *napi, int budget)
schedule_delayed_work(&vi->refill, 0);
}

return received;
}

static int virtnet_poll(struct napi_struct *napi, int budget)
{
struct receive_queue *rq =
container_of(napi, struct receive_queue, napi);
unsigned int r, received = 0;

again:
received += virtnet_receive(rq, budget - received);

/* Out of packets? */
if (received < budget) {
r = virtqueue_enable_cb_prepare(rq->vq);
Expand Down

0 comments on commit 2ffa759

Please sign in to comment.