From: Yong Zhang <yong.zhang0@gmail.com>
To: Juri Lelli <juri.lelli@gmail.com>
Cc: linux-kernel@vger.kernel.org,
Peter Zijlstra <a.p.zijlstra@chello.nl>,
Ingo Molnar <mingo@elte.hu>,
trivial@kernel.org
Subject: Re: [RESEND PATCH] Documentation: statistics about nested locks
Date: Fri, 20 May 2011 09:20:34 +0800 [thread overview]
Message-ID: <BANLkTimZq0wGhkiAcv09zkQH4SRaNGqUTQ@mail.gmail.com> (raw)
In-Reply-To: <4DD4F6C1.5090701@gmail.com>
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=UTF-8, Size: 4841 bytes --]
On Thu, May 19, 2011 at 6:53 PM, Juri Lelli <juri.lelli@gmail.com> wrote:
> Explain what the trailing "/1" on some lock class names of lock_stat output
> means.
>
> Cc: Yong Zhang <yong.zhang0@gmail.com>
> Signed-off-by: Juri Lelli <juri.lelli@gmail.com>
>
Looks good.
Reviewed-by: Yong Zhang <yong.zhang0@gmail.com>
> ---
> Â Documentation/lockstat.txt | Â 36 ++++++++++++++++++++++++++++++++++--
> Â 1 files changed, 34 insertions(+), 2 deletions(-)
>
> diff --git a/Documentation/lockstat.txt b/Documentation/lockstat.txt
> index 65f4c79..75eeb65 100644
> --- a/Documentation/lockstat.txt
> +++ b/Documentation/lockstat.txt
> @@ -12,8 +12,9 @@ Because things like lock contention can severely impact performance.
> Â - HOW
>
> Â Lockdep already has hooks in the lock functions and maps lock instances to
> -lock classes. We build on that. The graph below shows the relation between
> -the lock functions and the various hooks therein.
> +lock classes. We build on that (see Documentation/lockdep-design.txt).
> +The graph below shows the relation between the lock functions and the various
> +hooks therein.
>
> Â Â Â Â __acquire
> Â Â Â Â Â Â |
> @@ -128,6 +129,37 @@ points are the points we're contending with.
>
> Â The integer part of the time values is in us.
>
> +Dealing with nested locks, subclasses may appear:
> +
> +32...............................................................................................................................................................................................
> +33
> +34 Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â &rq->lock: Â Â Â Â 13128 Â Â Â Â Â 13128 Â Â Â Â Â 0.43 Â Â Â Â 190.53 Â Â Â 103881.26 Â Â Â Â Â 97454 Â Â Â Â 3453404 Â Â Â Â Â 0.00 Â Â Â Â 401.11 Â Â 13224683.11
> +35 Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â ---------
> +36                &rq->lock       645      [<ffffffff8103bfc4>] task_rq_lock+0x43/0x75
> +37                &rq->lock       297      [<ffffffff8104ba65>] try_to_wake_up+0x127/0x25a
> +38                &rq->lock       360      [<ffffffff8103c4c5>] select_task_rq_fair+0x1f0/0x74a
> +39                &rq->lock       428      [<ffffffff81045f98>] scheduler_tick+0x46/0x1fb
> +40 Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â ---------
> +41                &rq->lock       77      [<ffffffff8103bfc4>] task_rq_lock+0x43/0x75
> +42                &rq->lock       174      [<ffffffff8104ba65>] try_to_wake_up+0x127/0x25a
> +43                &rq->lock      4715      [<ffffffff8103ed4b>] double_rq_lock+0x42/0x54
> +44                &rq->lock       893      [<ffffffff81340524>] schedule+0x157/0x7b8
> +45
> +46...............................................................................................................................................................................................
> +47
> +48 Â Â Â Â Â Â Â Â Â Â Â Â Â Â &rq->lock/1: Â Â Â Â 11526 Â Â Â Â Â 11488 Â Â Â Â Â 0.33 Â Â Â Â 388.73 Â Â Â 136294.31 Â Â Â Â Â 21461 Â Â Â Â Â 38404 Â Â Â Â Â 0.00 Â Â Â Â Â 37.93 Â Â Â 109388.53
> +49 Â Â Â Â Â Â Â Â Â Â Â Â Â Â -----------
> +50 Â Â Â Â Â Â Â Â Â Â Â Â Â Â &rq->lock/1 Â Â Â Â Â 11526 Â Â Â Â Â [<ffffffff8103ed58>] double_rq_lock+0x4f/0x54
> +51 Â Â Â Â Â Â Â Â Â Â Â Â Â Â -----------
> +52 Â Â Â Â Â Â Â Â Â Â Â Â Â Â &rq->lock/1 Â Â Â Â Â 5645 Â Â Â Â Â [<ffffffff8103ed4b>] double_rq_lock+0x42/0x54
> +53 Â Â Â Â Â Â Â Â Â Â Â Â Â Â &rq->lock/1 Â Â Â Â Â 1224 Â Â Â Â Â [<ffffffff81340524>] schedule+0x157/0x7b8
> +54 Â Â Â Â Â Â Â Â Â Â Â Â Â Â &rq->lock/1 Â Â Â Â Â 4336 Â Â Â Â Â [<ffffffff8103ed58>] double_rq_lock+0x4f/0x54
> +55 Â Â Â Â Â Â Â Â Â Â Â Â Â Â &rq->lock/1 Â Â Â Â Â Â 181 Â Â Â Â Â [<ffffffff8104ba65>] try_to_wake_up+0x127/0x25a
> +
> +Line 48 shows statistics for the second subclass (/1) of &rq->lock class
> +(subclass starts from 0), since in this case, as line 50 suggests,
> +double_rq_lock actually acquires a nested lock of two spinlocks.
> +
> Â View the top contending locks:
>
> Â # grep : /proc/lock_stat | head
> --
> 1.7.4.1
>
--
Only stand for myself
ÿôèº{.nÇ+·®+%Ëÿ±éݶ\x17¥wÿº{.nÇ+·¥{±þG«éÿ{ayº\x1dÊÚë,j\a¢f£¢·hïêÿêçz_è®\x03(éÝ¢j"ú\x1a¶^[m§ÿÿ¾\a«þG«éÿ¢¸?¨èÚ&£ø§~á¶iOæ¬z·vØ^\x14\x04\x1a¶^[m§ÿÿÃ\fÿ¶ìÿ¢¸?I¥
next prev parent reply other threads:[~2011-05-20 1:20 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-05-19 10:53 Juri Lelli
2011-05-19 11:46 ` Peter Zijlstra
2011-05-20 1:20 ` Yong Zhang [this message]
2011-05-28 16:36 ` [tip:core/urgent] Documentation: Add " tip-bot for Juri Lelli
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=BANLkTimZq0wGhkiAcv09zkQH4SRaNGqUTQ@mail.gmail.com \
--to=yong.zhang0@gmail.com \
--cc=a.p.zijlstra@chello.nl \
--cc=juri.lelli@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=trivial@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®