Re: [PATCH net-next 12/14] net: ethernet: mtk_eth_soc: reduce unnecessary interrupts

From: Ilya Lipnitskiy
Date: Fri Apr 23 2021 - 00:20:39 EST


On Thu, Apr 22, 2021 at 9:26 AM Jakub Kicinski <kuba@xxxxxxxxxx> wrote:
>
> On Wed, 21 Apr 2021 21:09:12 -0700 Ilya Lipnitskiy wrote:
> > @@ -1551,8 +1551,9 @@ static int mtk_napi_rx(struct napi_struct *napi, int budget)
> > remain_budget -= rx_done;
> > goto poll_again;
> > }
> > - napi_complete(napi);
> > - mtk_rx_irq_enable(eth, MTK_RX_DONE_INT);
> > +
> > + if (napi_complete(napi))
> > + mtk_rx_irq_enable(eth, MTK_RX_DONE_INT);
>
> Why not napi_complete_done(napi, rx_done + budget - remain_budget)?
> (Modulo possible elimination of rx_done in this function.)
No reason, I think. Thanks for pointing it out. I will clean up both
TX and RX NAPI callbacks to use napi_complete_done and to get rid of
that ugly goto...

Ilya