mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-27 14:14:24 +08:00
um: vector: Fix NAPI budget handling
Fix the handling of NAPI budget. Signed-off-by: Anton Ivanov <anton.ivanov@cambridgegreys.com> Signed-off-by: Richard Weinberger <richard@nod.at>
This commit is contained in:
parent
612a8c8e0b
commit
671cd5eed9
@ -966,7 +966,7 @@ static int vector_mmsg_rx(struct vector_private *vp, int budget)
|
||||
budget = qi->max_depth;
|
||||
|
||||
packet_count = uml_vector_recvmmsg(
|
||||
vp->fds->rx_fd, qi->mmsg_vector, qi->max_depth, 0);
|
||||
vp->fds->rx_fd, qi->mmsg_vector, budget, 0);
|
||||
|
||||
if (packet_count < 0)
|
||||
vp->in_error = true;
|
||||
@ -1180,7 +1180,7 @@ static int vector_poll(struct napi_struct *napi, int budget)
|
||||
|
||||
if (tx_enqueued || err > 0)
|
||||
napi_schedule(napi);
|
||||
if (work_done < budget)
|
||||
if (work_done <= budget)
|
||||
napi_complete_done(napi, work_done);
|
||||
return work_done;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user