Re: [PATCH net-next v13 4/5] net: ti: prueth: Adds link detection, RX and TX support.
From: Jakub Kicinski <kuba@kernel.org>
Date: 2025-08-18 15:40:22
Also in:
linux-devicetree, lkml, netdev
From: Jakub Kicinski <kuba@kernel.org>
Date: 2025-08-18 15:40:22
Also in:
linux-devicetree, lkml, netdev
On Mon, 18 Aug 2025 18:39:37 +0530 (IST) Parvathi Pudi wrote:
+ if (num_rx_packets < budget && napi_complete_done(napi, num_rx_packets))
enable_irq(emac->rx_irq);
- }
return num_rx_packets;
}
We will address this in the next version.
Ideally:
if (num_rx < budget && napi_complete_done()) {
enable_irq();
return num_rx;
}
return budget;