]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
um: vector: Fix NAPI budget handling
authorAnton Ivanov <anton.ivanov@cambridgegreys.com>
Sat, 6 Jul 2024 09:12:00 +0000 (10:12 +0100)
committerRichard Weinberger <richard@nod.at>
Thu, 12 Sep 2024 18:09:41 +0000 (20:09 +0200)
Fix the handling of NAPI budget.

Signed-off-by: Anton Ivanov <anton.ivanov@cambridgegreys.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
arch/um/drivers/vector_kern.c

index 0d7e7a25b674f1c955d5a69ebc541418146f4236..c992da83268dd848be0e1d85445c8947447a3e71 100644 (file)
@@ -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;
 }