From: Yong Zhang <yong.zhang0@gmail.com>
To: "Michael J. Wang" <mjwang@broadcom.com>
Cc: "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
Peter Zijlstra <a.p.zijlstra@chello.nl>,
Steven Rostedt <rostedt@goodmis.org>, Ingo Molnar <mingo@elte.hu>
Subject: Re: minor improvement to pick_next_highest_task_rt ?
Date: Mon, 19 Mar 2012 14:32:04 +0800 [thread overview]
Message-ID: <20120319063204.GA1361@zhy> (raw)
In-Reply-To: <2EF88150C0EF2C43A218742ED384C1BC0FC83935@IRVEXCHMB08.corp.ad.broadcom.com>
Cc'ing more people.
And comments below.
On Fri, Mar 16, 2012 at 01:22:56AM +0000, Michael J. Wang wrote:
> Hi RT Scheduler experts,
>
> I was studying pick_next_highest_task_rt() and was wondering if this is a valid improvement:
>
> --- rt.c-3.3-rc7 2012-03-15 17:53:27.774190199 -0700
> +++ rt.c 2012-03-15 17:53:44.541979403 -0700
> @@ -1403,7 +1403,7 @@
> next_idx:
> if (idx >= MAX_RT_PRIO)
> continue;
> - if (next && next->prio < idx)
> + if (next && next->prio <= idx)
> continue;
> list_for_each_entry(rt_se, array->queue + idx, run_list) {
> struct task_struct *p;
>
>
> My reasoning is: if next is not NULL, then we have found a candidate task, and its priority is next->prio. Now we are looking for an even higher priority task in the other rt_rq's. idx is the highest priority in the current candidate rt_rq. In the current 3.3-rc7 code, if idx is equal to next->prio, we would start scanning the tasks in that rt_rq and replace the current candidate task with a task from that rt_rq. But the new task would only have a priority that is equal to our previous candidate task, so we have not advanced our goal of finding a higher prio task. So shouldn't we just skip that rt_rq if next->prio is less than *or equal to* idx ?
Yeah, I think this make sense.
But you should remake your patch according to
Documentation/SubmittingPatches.
Thanks,
Yong
>
> I know this is just a minor improvement and probably results in no measurable performance gain. But it just seems more correct this way. (Or if it is not correct, maybe I'll learn something :-)
>
> I do not subscribe to the LKML (but I have read the FAQ), so I would appreciate it if you can cc me on your responses.
>
> Thanks,
> Michael
>
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
--
Only stand for myself
next prev parent reply other threads:[~2012-03-19 6:32 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-16 1:22 minor improvement to pick_next_highest_task_rt ? Michael J. Wang
2012-03-19 6:32 ` Yong Zhang [this message]
2012-03-19 22:23 ` Michael J. Wang
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=20120319063204.GA1361@zhy \
--to=yong.zhang0@gmail.com \
--cc=a.p.zijlstra@chello.nl \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=mjwang@broadcom.com \
--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 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.