From: Andrea Parri <andrea.parri@amarulasolutions.com>
To: Peng Hao <peng.hao2@zte.com.cn>
Cc: mingo@redhat.com, peterz@infradead.org, rostedt@goodmis.org,
linux-kernel@vger.kernel.org, juri.lelli@redhat.com
Subject: Re: [PATCH v3] sched/rt : return accurate release rq lock info
Date: Fri, 5 Oct 2018 17:46:32 +0200 [thread overview]
Message-ID: <20181005154632.GA18077@andrea> (raw)
In-Reply-To: <1538778131-44406-1-git-send-email-peng.hao2@zte.com.cn>
Hi Peng,
On Sat, Oct 06, 2018 at 06:22:11AM +0800, Peng Hao wrote:
> find_lock_lowest_rq may or not releease rq lock when return
> lowest_rq=NULL, but it is fuzzy.
> If not releasing rq lock, it is unnecessary to re-call
> pick_next_pushable_task.
IIRC, deadline.c uses a similar pattern (c.f., find_lock_later_rq() and
pick_next_pushable_dl_task()): should it be considered for this change?
Andrea
> When CONFIG_PREEMPT=n, not releasing rq lock and return
> lowest_rq=null frequently happens in a simple test case:
> Four different rt priority tasks run on limited two cpus.
> Thanks for Steven Rostedt's advice.
>
> Signed-off-by: Peng Hao <peng.hao2@zte.com.cn>
> ---
> kernel/sched/rt.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/kernel/sched/rt.c b/kernel/sched/rt.c
> index 2e2955a..be0fc43 100644
> --- a/kernel/sched/rt.c
> +++ b/kernel/sched/rt.c
> @@ -1754,7 +1754,7 @@ static struct rq *find_lock_lowest_rq(struct task_struct *task, struct rq *rq)
> !task_on_rq_queued(task))) {
>
> double_unlock_balance(rq, lowest_rq);
> - lowest_rq = NULL;
> + lowest_rq = RETRY_TASK;
> break;
> }
> }
> @@ -1830,7 +1830,9 @@ static int push_rt_task(struct rq *rq)
>
> /* find_lock_lowest_rq locks the rq if found */
> lowest_rq = find_lock_lowest_rq(next_task, rq);
> - if (!lowest_rq) {
> + if (!lowest_rq)
> + goto out;
> + if (lowest_rq == RETRY_TASK) {
> struct task_struct *task;
> /*
> * find_lock_lowest_rq releases rq->lock
> --
> 1.8.3.1
>
next prev parent reply other threads:[~2018-10-05 15:46 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-10-05 22:22 [PATCH v3] sched/rt : return accurate release rq lock info Peng Hao
2018-10-05 14:26 ` Steven Rostedt
2018-10-05 15:46 ` Andrea Parri [this message]
[not found] ` <201810060003580936940@zte.com.cn>
2018-10-05 16:09 ` Steven Rostedt
2018-10-15 9:20 ` Peter Zijlstra
2018-10-15 15:42 ` Steven Rostedt
[not found] ` <201810160009439217654@zte.com.cn>
2018-10-15 17:20 ` Steven Rostedt
2018-10-16 12:35 ` Peter Zijlstra
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=20181005154632.GA18077@andrea \
--to=andrea.parri@amarulasolutions.com \
--cc=juri.lelli@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=peng.hao2@zte.com.cn \
--cc=peterz@infradead.org \
--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