From: Peter Zijlstra <peterz@infradead.org>
To: Peng Hao <peng.hao2@zte.com.cn>
Cc: mingo@redhat.com, linux-kernel@vger.kernel.org,
Steven Rostedt <rostedt@goodmis.org>,
Juri Lelli <juri.lelli@gmail.com>
Subject: Re: [PATCH] sched/rt : return accurate release rq lock info
Date: Tue, 2 Oct 2018 10:01:34 +0200 [thread overview]
Message-ID: <20181002080134.GR3439@hirez.programming.kicks-ass.net> (raw)
In-Reply-To: <1538490221-18028-1-git-send-email-peng.hao2@zte.com.cn>
On Tue, Oct 02, 2018 at 10:23:41PM +0800, Peng Hao wrote:
> find_lock_lowest_rq may or not releease rq lock, but it is fuzzy.
> If not releasing rq lock, it is unnecessary to re-call
> pick_next_oushable_task.
You forgot to mention how much this matters. That is, why did you take
the effort to write this patch.
> Signed-off-by: Peng Hao <peng.hao2@zte.com.cn>
> ---
> kernel/sched/rt.c | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/kernel/sched/rt.c b/kernel/sched/rt.c
> index 2e2955a..4d7d322 100644
> --- a/kernel/sched/rt.c
> +++ b/kernel/sched/rt.c
> @@ -1719,6 +1719,7 @@ static struct rq *find_lock_lowest_rq(struct task_struct *task, struct rq *rq)
> {
> struct rq *lowest_rq = NULL;
> int tries;
> + bool release_lock = false;
> int cpu;
We generally prefer to keep the variable definitions (reverse) ordered
on line length (reverse-xmas-tree).
>
> for (tries = 0; tries < RT_MAX_TRIES; tries++) {
> @@ -1741,6 +1742,7 @@ static struct rq *find_lock_lowest_rq(struct task_struct *task, struct rq *rq)
>
> /* if the prio of this runqueue changed, try again */
> if (double_lock_balance(rq, lowest_rq)) {
> + release_lock = true;
> /*
> * We had to unlock the run queue. In
> * the mean time, task could have
> @@ -1768,6 +1770,8 @@ static struct rq *find_lock_lowest_rq(struct task_struct *task, struct rq *rq)
> lowest_rq = NULL;
> }
>
> + if (!lowest_rq && !release_lock)
> + lowest_rq = (void *) -1;
We have a name for that thing, RETRY_TASK. Funnily it means the exact
opposite of what you did. So maybe use that and invert the logic.
> return lowest_rq;
> }
>
You also forgot to do the same to the deadline code; or explain why it
doesn't need it.
prev parent reply other threads:[~2018-10-02 8:01 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-10-02 14:23 Peng Hao
2018-10-02 8:01 ` Peter Zijlstra [this message]
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=20181002080134.GR3439@hirez.programming.kicks-ass.net \
--to=peterz@infradead.org \
--cc=juri.lelli@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=peng.hao2@zte.com.cn \
--cc=rostedt@goodmis.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®