From: Hayes Wang <hayeswang@realtek.com>
To: Eric Dumazet <edumazet@google.com>
Cc: "kuba@kernel.org" <kuba@kernel.org>,
"davem@davemloft.net" <davem@davemloft.net>,
"netdev@vger.kernel.org" <netdev@vger.kernel.org>,
nic_swsd <nic_swsd@realtek.com>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"linux-usb@vger.kernel.org" <linux-usb@vger.kernel.org>,
"bjorn@mork.no" <bjorn@mork.no>,
"pabeni@redhat.com" <pabeni@redhat.com>
Subject: RE: [PATCH net-next resend 1/2] r8152: remove queuing rx packets in driver
Date: Mon, 18 Sep 2023 08:38:31 +0000 [thread overview]
Message-ID: <7235821eb09242adaa651172729f76aa@realtek.com> (raw)
In-Reply-To: <CANn89iJmdkyn8_hU4esycRG-XvPa_Djsp6PyaOX5cYP1Obdr4g@mail.gmail.com>
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
next prev parent reply other threads:[~2023-09-18 8:39 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-18 7:41 [PATCH net-next resend 0/2] r8152: modify rx_bottom Hayes Wang
2023-09-18 7:42 ` [PATCH net-next resend 1/2] r8152: remove queuing rx packets in driver Hayes Wang
2023-09-18 7:54 ` Eric Dumazet
2023-09-18 8:38 ` Hayes Wang [this message]
2023-09-18 8:52 ` Eric Dumazet
2023-09-18 9:28 ` Hayes Wang
2023-09-18 7:42 ` [PATCH net-next resend 2/2] r8152: use napi_gro_frags Hayes Wang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=7235821eb09242adaa651172729f76aa@realtek.com \
--to=hayeswang@realtek.com \
--cc=bjorn@mork.no \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=nic_swsd@realtek.com \
--cc=pabeni@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox