public inbox for linux-ia64@vger.kernel.org
 help / color / mirror / Atom feed
From: Keith Owens <kaos@sgi.com>
To: linux-ia64@vger.kernel.org
Subject: Re: Attribute spinlock contention ticks to caller.
Date: Thu, 15 Sep 2005 00:10:30 +0000	[thread overview]
Message-ID: <15385.1126743030@ocs3.ocs.com.au> (raw)
In-Reply-To: <20050914222644.GA5036@lnx-holt.americas.sgi.com>

On Wed, 14 Sep 2005 17:26:44 -0500, 
Robin Holt <holt@sgi.com> wrote:
>
>On larger systems, ia64_spinlock_contention frequently shows up in
>pfmon output.  Determining whether it is a frequently contended lock or
>numerous different locks is very difficult.
>
>The following patch attributes the ticks received while in
>ia64_spinlock_contention to the requestor of the lock.
>...
>@@ -165,6 +175,12 @@ default_handler(struct task_struct *task
> 	 * where did the fault happen (includes slot number)
> 	 */
> 	ent->ip = regs->cr_iip | ((regs->cr_ipsr >> 41) & 0x3);
>+#ifdef CONFIG_SMP
>+	/* Fix up the ip for code in the spinlock contention path. */
>+	if ((ent->ip >= (unsigned long)ia64_spinlock_contention) &&
>+	    (ent->ip < (unsigned long)ia64_spinlock_contention_end))
>+		ent->ip = regs->b6;
>+#endif
> 
> 	ent->tstamp    = stamp;
> 	ent->cpu       = smp_processor_id();

There is a small window at the start of ia64_spinlock_contention_pre3_4
where b6 is not defined.  It is only about 2 bundles wide and is only
executed once when a lock is contended, so you are unlikely to hit it,
just FYI.


  reply	other threads:[~2005-09-15  0:10 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-09-14 22:26 Attribute spinlock contention ticks to caller Robin Holt
2005-09-15  0:10 ` Keith Owens [this message]
2005-09-15  6:34 ` Stephane Eranian
2005-09-15  8:19 ` Stephane Eranian
2005-09-15 17:14 ` Robin Holt
2005-09-15 17:23 ` Robin Holt
2005-09-15 17:37 ` Luck, Tony
2005-09-15 22:29 ` Robin Holt
2005-09-15 22:54 ` Zou Nan hai
2005-09-16  9:37 ` Stephane Eranian
2005-09-16 22:29 ` Robin Holt
2005-09-17  1:08 ` David Mosberger-Tang
2005-09-18 23:06 ` Robin Holt
2005-09-19  1:18 ` David Mosberger-Tang
2005-09-19  8:35 ` Stephane Eranian
2005-09-19 15:17 ` Robin Holt
2005-09-19 17:52 ` David Mosberger-Tang

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=15385.1126743030@ocs3.ocs.com.au \
    --to=kaos@sgi.com \
    --cc=linux-ia64@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox