From: Sieng Piaw Liew <liew.s.piaw@gmail.com>
To: Willy Tarreau <w@1wt.eu>
Cc: chris.snook@gmail.com, davem@davemloft.net, kuba@kernel.org,
netdev@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] atl1c: optimize rx loop
Date: Mon, 22 Mar 2021 08:54:01 +0800 [thread overview]
Message-ID: <20210322005326.GA24403@DESKTOP-8REGVGF.localdomain> (raw)
In-Reply-To: <20210319041535.GA3441@1wt.eu>
On Fri, Mar 19, 2021 at 05:15:35AM +0100, Willy Tarreau wrote:
> On Fri, Mar 19, 2021 at 12:04:47PM +0800, Sieng Piaw Liew wrote:
> > Remove this trivial bit of inefficiency from the rx receive loop,
> > results in increase of a few Mbps in iperf3. Tested on Intel Core2
> > platform.
> >
> > Signed-off-by: Sieng Piaw Liew <liew.s.piaw@gmail.com>
> > ---
> > drivers/net/ethernet/atheros/atl1c/atl1c_main.c | 4 +---
> > 1 file changed, 1 insertion(+), 3 deletions(-)
> >
> > diff --git a/drivers/net/ethernet/atheros/atl1c/atl1c_main.c b/drivers/net/ethernet/atheros/atl1c/atl1c_main.c
> > index 3f65f2b370c5..b995f9a0479c 100644
> > --- a/drivers/net/ethernet/atheros/atl1c/atl1c_main.c
> > +++ b/drivers/net/ethernet/atheros/atl1c/atl1c_main.c
> > @@ -1796,9 +1796,7 @@ static void atl1c_clean_rx_irq(struct atl1c_adapter *adapter,
> > struct atl1c_recv_ret_status *rrs;
> > struct atl1c_buffer *buffer_info;
> >
> > - while (1) {
> > - if (*work_done >= work_to_do)
> > - break;
> > + while (*work_done < work_to_do) {
>
> It should not change anything, or only based on the compiler's optimization
> and should not result in a measurable difference because what it does is
> exactly the same. Have you really compared the compiled output code to
> explain the difference ? I strongly suspect you'll find no difference at
> all.
>
> Thus for me it's certainly not an optimization, it could be qualified as
> a cleanup to improve code readability however.
>
> Willy
You're right. Objdump and diff showed no difference.
Regards,
Sieng Piaw
prev parent reply other threads:[~2021-03-22 0:55 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-19 4:04 [PATCH] atl1c: optimize rx loop Sieng Piaw Liew
2021-03-19 4:15 ` Willy Tarreau
2021-03-22 0:54 ` Sieng Piaw Liew [this message]
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=20210322005326.GA24403@DESKTOP-8REGVGF.localdomain \
--to=liew.s.piaw@gmail.com \
--cc=chris.snook@gmail.com \
--cc=davem@davemloft.net \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=w@1wt.eu \
/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