Commit faadb05f authored by Li RongQing's avatar Li RongQing Committed by David S. Miller

virtio: simplify the using of received in virtnet_poll

received is 0, no need to minus it and use "+=" to reassign it
Signed-off-by: default avatarLi RongQing <roy.qing.li@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 3556eaaa
......@@ -749,9 +749,9 @@ 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;
unsigned int r, received;
received += virtnet_receive(rq, budget - received);
received = virtnet_receive(rq, budget);
/* Out of packets? */
if (received < budget) {
......
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