All of lore.kernel.org
 help / color / mirror / Atom feed
From: Steven Rostedt <rostedt@goodmis.org>
To: linux-kernel@vger.kernel.org
Cc: Thomas Gleixner <tglx@linutronix.de>, Ingo Molnar <mingo@elte.hu>,
	Lai Jiangshan <laijs@cn.fujitsu.com>,
	Peter Zijlstra <peterz@infradead.org>
Subject: [PATCH 2/5][RT] rtmutex: Try to take lock early in rt_spin_lock_slowlock()
Date: Mon, 10 Jan 2011 22:53:57 -0500	[thread overview]
Message-ID: <20110111035719.939086039@goodmis.org> (raw)
In-Reply-To: 20110111035355.643480133@goodmis.org

[-- Attachment #1: 0002-rtmutex-Try-to-take-lock-early-in-rt_spin_lock_slowl.patch --]
[-- Type: text/plain, Size: 881 bytes --]

From: Steven Rostedt <srostedt@redhat.com>

Try to take the lock again as soon as we go into the
rt_spin_lock_slowlock() code before doing the setup and wait loop.
This makes the code closer to what the rt_mutex_slowlock() does,
which will help in simplifying this code in later commits.

Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
---
 kernel/rtmutex.c |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/kernel/rtmutex.c b/kernel/rtmutex.c
index f0ce334..318d7ed 100644
--- a/kernel/rtmutex.c
+++ b/kernel/rtmutex.c
@@ -829,6 +829,11 @@ rt_spin_lock_slowlock(struct rt_mutex *lock)
 	raw_spin_lock_irqsave(&lock->wait_lock, flags);
 	init_lists(lock);
 
+	if (do_try_to_take_rt_mutex(lock, STEAL_LATERAL)) {
+		raw_spin_unlock_irqrestore(&lock->wait_lock, flags);
+		return;
+	}
+
 	BUG_ON(rt_mutex_owner(lock) == current);
 
 	/*
-- 
1.7.2.3



  parent reply	other threads:[~2011-01-11  3:58 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-01-11  3:53 [PATCH 0/5][RT] [GIT PULL] rt: Port of Lai Jiangshan's rt patch Steven Rostedt
2011-01-11  3:53 ` [PATCH 1/5][RT] rtmutex: Only save lock depth once in spin_slowlock Steven Rostedt
2011-01-11  3:53 ` Steven Rostedt [this message]
2011-01-11  3:53 ` [PATCH 3/5][RT] rtmutex: Revert Optimize rt lock wakeup Steven Rostedt
2011-01-11  3:53 ` [PATCH 4/5][RT] rtmutex: Fix comment about why new_owner can be NULL in wake_futex_pi() Steven Rostedt
2011-01-11  3:54 ` [PATCH 5/5][RT] rtmutex: Ensure only the top waiter or higher priority task can take the lock Steven Rostedt
2011-01-11  8:24 ` [PATCH 0/5][RT] [GIT PULL] rt: Port of Lai Jiangshan's rt patch Thomas Gleixner

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=20110111035719.939086039@goodmis.org \
    --to=rostedt@goodmis.org \
    --cc=laijs@cn.fujitsu.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@elte.hu \
    --cc=peterz@infradead.org \
    --cc=tglx@linutronix.de \
    /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.