All of lore.kernel.org
 help / color / mirror / Atom feed
From: Manfred Spraul <manfred@colorfullife.com>
To: Mike Galbraith <efault@gmx.de>
Cc: LKML <linux-kernel@vger.kernel.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	Rik van Riel <riel@redhat.com>,
	Davidlohr Bueso <davidlohr.bueso@hp.com>,
	hhuang@redhat.com, Linus Torvalds <torvalds@linux-foundation.org>
Subject: Re: [PATCH 0/6] ipc/sem.c: performance improvements, FIFO
Date: Sat, 15 Jun 2013 13:10:17 +0200	[thread overview]
Message-ID: <51BC4B99.4050506@colorfullife.com> (raw)
In-Reply-To: <1371236750.5796.54.camel@marge.simpson.net>

On 06/14/2013 09:05 PM, Mike Galbraith wrote:
> # Events: 802K cycles
> #
> # Overhead                                      Symbol
> # ........  ..........................................
> #
>      18.42%  [k] SYSC_semtimedop
>      15.39%  [k] sem_lock
>      10.26%  [k] _raw_spin_lock
>       9.00%  [k] perform_atomic_semop
>       7.89%  [k] system_call
>       7.70%  [k] ipc_obtain_object_check
>       6.95%  [k] ipcperms
>       6.62%  [k] copy_user_generic_string
>       4.16%  [.] __semop
>       2.57%  [.] worker_thread(void*)
>       2.30%  [k] copy_from_user
>       1.75%  [k] sem_unlock
>       1.25%  [k] ipc_obtain_object
~ 280 mio ops.
2.3% copy_from_user,
9% perform_atomic_semop.

> # Events: 802K cycles
> #
> # Overhead                           Symbol
> # ........  ...............................
> #
>      17.38%  [k] SYSC_semtimedop
>      13.26%  [k] system_call
>      11.31%  [k] copy_user_generic_string
>       7.62%  [.] __semop
>       7.18%  [k] _raw_spin_lock
>       5.66%  [k] ipcperms
>       5.40%  [k] sem_lock
>       4.65%  [k] perform_atomic_semop
>       4.22%  [k] ipc_obtain_object_check
>       4.08%  [.] worker_thread(void*)
>       4.06%  [k] copy_from_user
>       2.40%  [k] ipc_obtain_object
>       1.98%  [k] pid_vnr
>       1.45%  [k] wake_up_sem_queue_do
>       1.39%  [k] sys_semop
>       1.35%  [k] sys_semtimedop
>       1.30%  [k] sem_unlock
>       1.14%  [k] security_ipc_permission
~ 700 mio ops.
4% copy_from_user -> as expected a bit more
4.6% perform_atomic_semop --> less.

Thus: Could you send the oprofile output from perform_atomic_semop()?

Perhaps that gives us a hint.

My current guess:
sem_lock() somehow ends up in lock_array.
Lock_array scans all struct sem -> transfer of that cacheline from all 
cpus to the cpu that does the lock_array..
Then the next write by the "correct" cpu causes a transfer back when 
setting sem->pid.

--
     Manfred

  parent reply	other threads:[~2013-06-15 11:10 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-06-10 17:16 [PATCH 0/6] ipc/sem.c: performance improvements, FIFO Manfred Spraul
2013-06-10 17:16 ` [PATCH 1/6] ipc/util.c, ipc_rcu_alloc: cacheline align allocation Manfred Spraul
2013-06-10 17:16   ` [PATCH 2/6] ipc/sem.c: cacheline align the semaphore structures Manfred Spraul
2013-06-10 17:16     ` [PATCH 3/6] ipc/sem: seperate wait-for-zero and alter tasks into seperate queues Manfred Spraul
2013-06-10 17:16       ` [PATCH 4/6] ipc/sem.c: Always use only one queue for alter operations Manfred Spraul
2013-06-10 17:16         ` [PATCH 5/6] ipc/sem.c: Replace shared sem_otime with per-semaphore value Manfred Spraul
2013-06-10 17:16           ` [PATCH 6/6] ipc/sem.c: Rename try_atomic_semop() to perform_atomic_semop(), docu update Manfred Spraul
2013-06-14 15:38 ` [PATCH 0/6] ipc/sem.c: performance improvements, FIFO Manfred Spraul
2013-06-14 19:05   ` Mike Galbraith
2013-06-15  5:27     ` Manfred Spraul
2013-06-15  5:48       ` Mike Galbraith
2013-06-15  7:30         ` Mike Galbraith
2013-06-15  8:36           ` Mike Galbraith
2013-06-15 11:10     ` Manfred Spraul [this message]
2013-06-15 11:37       ` Mike Galbraith
2013-06-18  6:48       ` Mike Galbraith
2013-06-18  7:14         ` Mike Galbraith
2013-06-19 12:57           ` Mike Galbraith

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=51BC4B99.4050506@colorfullife.com \
    --to=manfred@colorfullife.com \
    --cc=akpm@linux-foundation.org \
    --cc=davidlohr.bueso@hp.com \
    --cc=efault@gmx.de \
    --cc=hhuang@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=riel@redhat.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 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.