All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] kernel/sched: remove dl_boosted flag comment
@ 2022-01-07  9:52 Hui Su
  2022-01-13  8:23 ` Daniel Bristot de Oliveira
  2022-01-18 11:18 ` [tip: sched/urgent] kernel/sched: Remove " tip-bot2 for Hui Su
  0 siblings, 2 replies; 3+ messages in thread
From: Hui Su @ 2022-01-07  9:52 UTC (permalink / raw)
  To: mingo, peterz, juri.lelli, vincent.guittot, dietmar.eggemann,
	rostedt, bsegall, mgorman, bristot, linux-kernel

since commit 2279f540ea7d ("sched/deadline: Fix priority
inheritance with multiple scheduling classes"), we should not
keep it here.

Signed-off-by: Hui Su <suhui_kernel@163.com>
---
 include/linux/sched.h | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/include/linux/sched.h b/include/linux/sched.h
index 78c351e35fec..64426351d424 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -610,10 +610,6 @@ struct sched_dl_entity {
 	 * task has to wait for a replenishment to be performed at the
 	 * next firing of dl_timer.
 	 *
-	 * @dl_boosted tells if we are boosted due to DI. If so we are
-	 * outside bandwidth enforcement mechanism (but only until we
-	 * exit the critical section);
-	 *
 	 * @dl_yielded tells if task gave up the CPU before consuming
 	 * all its available runtime during the last job.
 	 *
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] kernel/sched: remove dl_boosted flag comment
  2022-01-07  9:52 [PATCH] kernel/sched: remove dl_boosted flag comment Hui Su
@ 2022-01-13  8:23 ` Daniel Bristot de Oliveira
  2022-01-18 11:18 ` [tip: sched/urgent] kernel/sched: Remove " tip-bot2 for Hui Su
  1 sibling, 0 replies; 3+ messages in thread
From: Daniel Bristot de Oliveira @ 2022-01-13  8:23 UTC (permalink / raw)
  To: Hui Su, mingo, peterz, juri.lelli, vincent.guittot,
	dietmar.eggemann, rostedt, bsegall, mgorman, linux-kernel

On 1/7/22 10:52, Hui Su wrote:
> since commit 2279f540ea7d ("sched/deadline: Fix priority
> inheritance with multiple scheduling classes"), we should not
> keep it here.
> 
> Signed-off-by: Hui Su <suhui_kernel@163.com>

Reviewed-by: Daniel Bristot de Oliveira <bristot@redhat.com>

Thanks!

-- Daniel

> ---
>  include/linux/sched.h | 4 ----
>  1 file changed, 4 deletions(-)
> 
> diff --git a/include/linux/sched.h b/include/linux/sched.h
> index 78c351e35fec..64426351d424 100644
> --- a/include/linux/sched.h
> +++ b/include/linux/sched.h
> @@ -610,10 +610,6 @@ struct sched_dl_entity {
>  	 * task has to wait for a replenishment to be performed at the
>  	 * next firing of dl_timer.
>  	 *
> -	 * @dl_boosted tells if we are boosted due to DI. If so we are
> -	 * outside bandwidth enforcement mechanism (but only until we
> -	 * exit the critical section);
> -	 *
>  	 * @dl_yielded tells if task gave up the CPU before consuming
>  	 * all its available runtime during the last job.
>  	 *


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [tip: sched/urgent] kernel/sched: Remove dl_boosted flag comment
  2022-01-07  9:52 [PATCH] kernel/sched: remove dl_boosted flag comment Hui Su
  2022-01-13  8:23 ` Daniel Bristot de Oliveira
@ 2022-01-18 11:18 ` tip-bot2 for Hui Su
  1 sibling, 0 replies; 3+ messages in thread
From: tip-bot2 for Hui Su @ 2022-01-18 11:18 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: Hui Su, Peter Zijlstra (Intel), Daniel Bristot de Oliveira, x86,
	linux-kernel

The following commit has been merged into the sched/urgent branch of tip:

Commit-ID:     0e3872499de1a1230cef5221607d71aa09264bd5
Gitweb:        https://git.kernel.org/tip/0e3872499de1a1230cef5221607d71aa09264bd5
Author:        Hui Su <suhui_kernel@163.com>
AuthorDate:    Fri, 07 Jan 2022 17:52:54 +08:00
Committer:     Peter Zijlstra <peterz@infradead.org>
CommitterDate: Tue, 18 Jan 2022 12:10:00 +01:00

kernel/sched: Remove dl_boosted flag comment

since commit 2279f540ea7d ("sched/deadline: Fix priority
inheritance with multiple scheduling classes"), we should not
keep it here.

Signed-off-by: Hui Su <suhui_kernel@163.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Reviewed-by: Daniel Bristot de Oliveira <bristot@redhat.com>
Link: https://lore.kernel.org/r/20220107095254.GA49258@localhost.localdomain
---
 include/linux/sched.h | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/include/linux/sched.h b/include/linux/sched.h
index 7a1f16d..7f8b449 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -614,10 +614,6 @@ struct sched_dl_entity {
 	 * task has to wait for a replenishment to be performed at the
 	 * next firing of dl_timer.
 	 *
-	 * @dl_boosted tells if we are boosted due to DI. If so we are
-	 * outside bandwidth enforcement mechanism (but only until we
-	 * exit the critical section);
-	 *
 	 * @dl_yielded tells if task gave up the CPU before consuming
 	 * all its available runtime during the last job.
 	 *

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-01-18 11:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-07  9:52 [PATCH] kernel/sched: remove dl_boosted flag comment Hui Su
2022-01-13  8:23 ` Daniel Bristot de Oliveira
2022-01-18 11:18 ` [tip: sched/urgent] kernel/sched: Remove " tip-bot2 for Hui Su

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.