[net-next,resend,0/2] r8152: modify rx_bottom

Message ID 20230918074202.2461-426-nic_swsd@realtek.com
Headers
Series r8152: modify rx_bottom |

Message

Hayes Wang Sept. 18, 2023, 7:41 a.m. UTC
  These patches are used to improve rx_bottom().

Hayes Wang (2):
  r8152: remove queuing rx packets in driver
  r8152: use napi_gro_frags

 drivers/net/usb/r8152.c | 80 +++++++++++++++++------------------------
 1 file changed, 32 insertions(+), 48 deletions(-)
  

Comments

Hayes Wang Sept. 18, 2023, 8:38 a.m. UTC | #1
Eric Dumazet <edumazet@google.com>
> Sent: Monday, September 18, 2023 3:55 PM
[...]
> >                         urb->actual_length = 0;
> >                         list_add_tail(&agg->list, next);
> >                 }
> > +
> > +               /* Break if budget is exhausted. */
> 
> [1] More conventional way to to put this condition at the beginning of
> the while () loop,
> because the budget could be zero.

If the budget is zero, the function wouldn't be called.
a7b8d60b3723 ("r8152: check budget for r8152_poll") avoids it.

> > +               if (work_done >= budget)
> > +                       break;
> >         }
> >
> > +       /* Splice the remained list back to rx_done */
> >         if (!list_empty(&rx_queue)) {
> >                 spin_lock_irqsave(&tp->rx_lock, flags);
> > -               list_splice_tail(&rx_queue, &tp->rx_done);
> > +               list_splice(&rx_queue, &tp->rx_done);
> >                 spin_unlock_irqrestore(&tp->rx_lock, flags);
> >         }
> >
> >  out1:
> > -       return work_done;
> > +       if (work_done > budget)
> 
> This (work_done >budget) condition would never be true if point [1] is
> addressed.

A bulk transfer may contain many packets, so the work_done may be more than budget.
That is why I queue the packets in the driver before this patch.
For example, if a bulk transfer contains 70 packet and budget is 64,
napi_gro_receive would be called for the first 64 packets and 6 packets would
be queued in driver for next schedule. After this patch, napi_gro_receive() would
be called for the 70 packets, even the budget is 64. And the remained bulk transfers
would be handled for next schedule.

> > +               return budget;
> > +       else
> > +               return work_done;
> >  }

Best Regards,
Hayes