From: Jesper Dangaard Brouer <brouer@redhat.com>
To: Alexander Duyck <alexander.h.duyck@intel.com>
Cc: Daniel Borkmann <dborkman@redhat.com>,
davem@davemloft.net, netdev@vger.kernel.org, brouer@redhat.com
Subject: Re: [RFC PATCH net-next 1/3] ixgbe: support netdev_ops->ndo_xmit_flush()
Date: Tue, 26 Aug 2014 08:44:55 +0200 [thread overview]
Message-ID: <20140826084455.28dd4058@redhat.com> (raw)
In-Reply-To: <53FBBE06.3020405@intel.com>
On Mon, 25 Aug 2014 15:51:50 -0700
Alexander Duyck <alexander.h.duyck@intel.com> wrote:
> On 08/25/2014 05:07 AM, Jesper Dangaard Brouer wrote:
> > On Sun, 24 Aug 2014 15:42:16 +0200
> > Daniel Borkmann <dborkman@redhat.com> wrote:
> >
> >> This implements the deferred tail pointer flush API for the ixgbe
> >> driver. Similar version also proposed longer time ago by Alexander Duyck.
> >
> > I've run some benchmarks with this patch only, which actually shows a
> > performance regression.
> >
> > Using trafgen with QDISC_BYPASS and mmap mode, via cmdline:
> > trafgen --cpp --dev eth5 --conf udp_example01.trafgen -V --cpus 1
> >
> > BASELINE(no-patch): trafgen QDISC_BYPASS and mmap:
> > - tx:1562539 pps
> >
> > (This patch only): ixgbe use of .ndo_xmit_flush.
> > - tx:1532299 pps
> >
> > Regression: -30240 pps
> > * In nanosec: (1/1562539*10^9)-(1/1532299*10^9) = -12.63 ns
> >
> >
> > As DaveM points out, me might not need the mmiowb().
> > Result when not performing the mmiowb():
> > - tx:1548352 pps
> >
> > Still a small regression: -14187 pps
> > * In nanosec: (1/1562539*10^9)-(1/1548352*10^9) = -5.86 ns
> >
> >
> > I was not expecting this "slowdown", with this rather simple use of the
> > new ndo_xmit_flush API. Can anyone explain why this is happening?
>
> One possibility is that we are now doing less stuff between the time we
> write tail and when we grab the qdisc lock (locked transactions are
> stalled by MMIO) so that we are spending more time stuck waiting for the
> write to complete and doing nothing.
In this testcase we are bypassing the qdisc code path, but still taking
the HARD_TX_LOCK. I were only expecting in the area of -2ns due to the
extra function call overhead.
But when we start to include the qdisc code path, then the performance
regression gets even worse. I would like an explanation for that, see:
http://thread.gmane.org/gmane.linux.network/327254/focus=327431
> Then of course there are always the funny oddball quirks such as the
> code changes might have changed the alignment of a loop resulting in Tx
> cleanup more expensive than it was before.
Yes, this is when it gets hairy!
--
Best regards,
Jesper Dangaard Brouer
MSc.CS, Sr. Network Kernel Developer at Red Hat
Author of http://www.iptv-analyzer.org
LinkedIn: http://www.linkedin.com/in/brouer
next prev parent reply other threads:[~2014-08-26 6:45 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-24 13:42 [RFC PATCH net-next 0/3] Some deferred TX queue follow-ups Daniel Borkmann
2014-08-24 13:42 ` [RFC PATCH net-next 1/3] ixgbe: support netdev_ops->ndo_xmit_flush() Daniel Borkmann
2014-08-25 5:55 ` David Miller
2014-08-25 12:07 ` Jesper Dangaard Brouer
2014-08-25 22:32 ` David Miller
2014-08-25 23:31 ` David Miller
2014-08-26 6:13 ` Daniel Borkmann
2014-08-25 22:51 ` Alexander Duyck
2014-08-26 6:44 ` Jesper Dangaard Brouer [this message]
2014-08-27 11:34 ` Jesper Dangaard Brouer
2014-08-24 13:42 ` [RFC PATCH net-next 2/3] net: add __netdev_xmit_{only,flush} helpers Daniel Borkmann
2014-08-24 13:42 ` [RFC PATCH net-next 3/3] packet: make use of deferred TX queue flushing Daniel Borkmann
2014-08-25 5:57 ` David Miller
2014-08-25 6:40 ` Daniel Borkmann
2014-08-25 13:54 ` Jesper Dangaard Brouer
2014-08-25 15:16 ` Jesper Dangaard Brouer
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=20140826084455.28dd4058@redhat.com \
--to=brouer@redhat.com \
--cc=alexander.h.duyck@intel.com \
--cc=davem@davemloft.net \
--cc=dborkman@redhat.com \
--cc=netdev@vger.kernel.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.