From: Heiko Carstens <heiko.carstens@de.ibm.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Andrew Morton <akpm@linux-foundation.org>,
Peter Zijlstra <a.p.zijlstra@chello.nl>,
Ingo Molnar <mingo@elte.hu>,
linux-arch@vger.kernel.org,
Martin Schwidefsky <schwidefsky@de.ibm.com>,
Arnd Bergmann <arnd@arndb.de>,
Horst Hartmann <horsth@linux.vnet.ibm.com>,
Christian Ehrhardt <ehrhardt@linux.vnet.ibm.com>,
"David S. Miller" <davem@davemloft.net>
Subject: Re: [patch 0/3] Allow inlined spinlocks again V3
Date: Fri, 14 Aug 2009 19:13:08 +0200 [thread overview]
Message-ID: <20090814171308.GA4906@osiris.boeblingen.de.ibm.com> (raw)
In-Reply-To: <alpine.LFD.2.01.0908140840540.3162@localhost.localdomain>
On Fri, Aug 14, 2009 at 09:04:49AM -0700, Linus Torvalds wrote:
> On Fri, 14 Aug 2009, Heiko Carstens wrote:
> >
> > All of this started when we compared a 2.6.27 based distro kernel
> > to a 2.6.16 based one. It turned out that 2.6.27 burns a lot more cpu
> > cycles than 2.6.16 does for the same workloads.
> >
> > As an example: we took a simple one connection ping pong network load.
> > (client sends packet to server and waits until packet from server
> > returns and game starts again). It uses more cpu cycles on 2.6.27.
> >
> > Using ftrace we figured out that on 2.6.27 it takes more than 500 function
> > calls on the client for a single roundtrip while on 2.6.16 it took only
> > ~230 calls.
>
> Hmm. But the spinlock part of this seems to not really have changed.
>
> Removing everything but the actual callchain info, and then doing a "diff"
> between your two roundtrips, and they look very different, and basically
> none of the difference seems to be due to spinlocks.
>
> It seems to be due to a number of different things, but the bulk of the
> new costs seem to be in networking (and to some degree scheduling). There
> are smaller differences elsewhere, but the networking code _really_ blows
> up.
>
> I don't know how much of some of these are "real" kernel changes, and how
> much of it is less inlining, but spinlocks don't seem to be the issue.
> Here's a quick walk-through (some of these get repeated a couple of times
> in your traces)
That's true. I just wanted to give some background how all of this started.
Spinlocks are equally good or bad for s390 on both kernel versions.
However quite a few of the additional function calls in networking code
come from uninlining:
c2aa270a [NET]: uninline skb_push, de-bloats a lot
6be8ac2f [NET]: uninline skb_pull, de-bloats a lot
419ae74e [NET]: uninline skb_trim, de-bloats
Christian Ehrhardt identified these and more, but hasn't posted patches
yet. Reverting these patches does increase performance.
That's when I started wondering what we would gain when we would inline
spinlock code again.
> * the timer code doing more:
>
> __timer_stats_timer_set_start_info <-mod_timer
> __mod_timer <-mod_timer
> __timer_stats_timer_set_start_info <-__mod_timer
> lock_timer_base <-__mod_timer
> _spin_lock_irqsave <-lock_timer_base
> internal_add_timer <-__mod_timer
> _spin_unlock_irqrestore <-__mod_timer
> qdio_perf_stat_inc <-qdio_outbound_processing
> account_system_vtime <-__do_softirq
This should be better now:
507e1231 timer stats: Optimize by adding quick check to avoid function calls
We did also address our device driver with several patches.
next prev parent reply other threads:[~2009-08-14 17:14 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-08-12 18:39 [patch 0/3] Allow inlined spinlocks again V3 Heiko Carstens
2009-08-12 18:39 ` [patch 1/3] spinlock: move spinlock function bodies to header file Heiko Carstens
2009-08-12 18:39 ` [patch 2/3] spinlock: allow inlined spinlocks Heiko Carstens
2009-08-12 18:39 ` [patch 3/3] spinlock: allow inlined spinlocks on s390 Heiko Carstens
2009-08-13 18:11 ` [patch 0/3] Allow inlined spinlocks again V3 Linus Torvalds
2009-08-13 18:34 ` Ingo Molnar
2009-08-13 18:43 ` Ingo Molnar
2009-08-14 12:34 ` Heiko Carstens
2009-08-14 16:04 ` Linus Torvalds
2009-08-14 17:13 ` Heiko Carstens [this message]
2009-08-14 18:08 ` Linus Torvalds
2009-08-14 20:19 ` David Miller
2009-08-14 20:45 ` Linus Torvalds
2009-08-14 21:10 ` Linus Torvalds
2009-08-14 22:23 ` David Miller
2009-08-16 18:27 ` Heiko Carstens
2009-08-16 18:45 ` Linus Torvalds
2009-08-16 20:36 ` Ingo Molnar
2009-08-17 10:26 ` Heiko Carstens
2009-08-17 21:26 ` [numbers] Re: [patch] more skb ops inlining Ingo Molnar
2009-08-18 11:34 ` Heiko Carstens
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=20090814171308.GA4906@osiris.boeblingen.de.ibm.com \
--to=heiko.carstens@de.ibm.com \
--cc=a.p.zijlstra@chello.nl \
--cc=akpm@linux-foundation.org \
--cc=arnd@arndb.de \
--cc=davem@davemloft.net \
--cc=ehrhardt@linux.vnet.ibm.com \
--cc=horsth@linux.vnet.ibm.com \
--cc=linux-arch@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=schwidefsky@de.ibm.com \
--cc=torvalds@linux-foundation.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).