public inbox for linux-trace-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Gabriele Monaco <gmonaco@redhat.com>
To: linux-kernel@vger.kernel.org,
	Steven Rostedt <rostedt@goodmis.org>,
	Nam Cao <namcao@linutronix.de>, Juri Lelli <jlelli@redhat.com>,
	Masami Hiramatsu <mhiramat@kernel.org>,
	Ingo Molnar <mingo@redhat.com>,
	Peter Zijlstra <peterz@infradead.org>,
	linux-trace-kernel@vger.kernel.org
Cc: Gabriele Monaco <gmonaco@redhat.com>,
	Tomas Glozar <tglozar@redhat.com>,
	Clark Williams <williams@redhat.com>,
	John Kacur <jkacur@redhat.com>
Subject: [PATCH v4 10/15] sched: Add task enqueue/dequeue trace points
Date: Fri, 16 Jan 2026 13:39:06 +0100	[thread overview]
Message-ID: <20260116123911.130300-11-gmonaco@redhat.com> (raw)
In-Reply-To: <20260116123911.130300-1-gmonaco@redhat.com>

From: Nam Cao <namcao@linutronix.de>

Add trace points into enqueue_task() and dequeue_task().

Suggested-by: Peter Zijlstra <peterz@infradead.org>
Signed-off-by: Nam Cao <namcao@linutronix.de>
Signed-off-by: Gabriele Monaco <gmonaco@redhat.com>
---
 include/trace/events/sched.h | 13 +++++++++++++
 kernel/sched/core.c          |  9 ++++++++-
 kernel/sched/sched.h         |  2 ++
 3 files changed, 23 insertions(+), 1 deletion(-)

diff --git a/include/trace/events/sched.h b/include/trace/events/sched.h
index 366b2e8ec40c..f4e1d3554e3e 100644
--- a/include/trace/events/sched.h
+++ b/include/trace/events/sched.h
@@ -912,6 +912,19 @@ DECLARE_TRACE(sched_dl_server_stop,
 	TP_PROTO(struct sched_dl_entity *dl_se, int cpu),
 	TP_ARGS(dl_se, cpu));
 
+/*
+ * The two trace points below may not work as expected for fair tasks due
+ * to delayed dequeue. See:
+ * https://lore.kernel.org/lkml/179674c6-f82a-4718-ace2-67b5e672fdee@amd.com/
+ */
+DECLARE_TRACE(sched_enqueue,
+	TP_PROTO(struct task_struct *tsk, int cpu),
+	TP_ARGS(tsk, cpu));
+
+DECLARE_TRACE(sched_dequeue,
+	TP_PROTO(struct task_struct *tsk, int cpu),
+	TP_ARGS(tsk, cpu));
+
 #endif /* _TRACE_SCHED_H */
 
 /* This part must be outside protection */
diff --git a/kernel/sched/core.c b/kernel/sched/core.c
index f6293fa02fb7..8958c013fb2c 100644
--- a/kernel/sched/core.c
+++ b/kernel/sched/core.c
@@ -2087,6 +2087,8 @@ unsigned long get_wchan(struct task_struct *p)
 
 void enqueue_task(struct rq *rq, struct task_struct *p, int flags)
 {
+	trace_sched_enqueue_tp(p, rq->cpu);
+
 	if (!(flags & ENQUEUE_NOCLOCK))
 		update_rq_clock(rq);
 
@@ -2114,6 +2116,8 @@ void enqueue_task(struct rq *rq, struct task_struct *p, int flags)
  */
 inline bool dequeue_task(struct rq *rq, struct task_struct *p, int flags)
 {
+	int ret;
+
 	if (sched_core_enabled(rq))
 		sched_core_dequeue(rq, p, flags);
 
@@ -2131,7 +2135,10 @@ inline bool dequeue_task(struct rq *rq, struct task_struct *p, int flags)
 	 */
 	uclamp_rq_dec(rq, p);
 	rq->queue_mask |= p->sched_class->queue_mask;
-	return p->sched_class->dequeue_task(rq, p, flags);
+	ret = p->sched_class->dequeue_task(rq, p, flags);
+	if (trace_sched_dequeue_tp_enabled() && !(flags & DEQUEUE_SLEEP))
+		trace_sched_dequeue_tp(p, rq->cpu);
+	return ret;
 }
 
 void activate_task(struct rq *rq, struct task_struct *p, int flags)
diff --git a/kernel/sched/sched.h b/kernel/sched/sched.h
index e885a935b716..8465472b40fa 100644
--- a/kernel/sched/sched.h
+++ b/kernel/sched/sched.h
@@ -2918,6 +2918,8 @@ static inline void sub_nr_running(struct rq *rq, unsigned count)
 
 static inline void __block_task(struct rq *rq, struct task_struct *p)
 {
+	trace_sched_dequeue_tp(p, rq->cpu);
+
 	if (p->sched_contributes_to_load)
 		rq->nr_uninterruptible++;
 
-- 
2.52.0


  parent reply	other threads:[~2026-01-16 12:40 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-01-16 12:38 [PATCH v4 00/15] rv: Add Hybrid Automata monitor type, per-object and deadline monitors Gabriele Monaco
2026-01-16 12:38 ` [PATCH v4 01/15] rv: Unify DA event handling functions across monitor types Gabriele Monaco
2026-01-16 12:38 ` [PATCH v4 02/15] rv: Add Hybrid Automata monitor type Gabriele Monaco
2026-01-16 12:38 ` [PATCH v4 03/15] verification/rvgen: Allow spaces in and events strings Gabriele Monaco
2026-01-16 12:39 ` [PATCH v4 04/15] verification/rvgen: Add support for Hybrid Automata Gabriele Monaco
2026-01-16 12:39 ` [PATCH v4 05/15] Documentation/rv: Add documentation about hybrid automata Gabriele Monaco
2026-01-16 12:39 ` [PATCH v4 06/15] rv: Add sample hybrid monitors stall Gabriele Monaco
2026-01-16 12:39 ` [PATCH v4 07/15] rv: Convert the opid monitor to a hybrid automaton Gabriele Monaco
2026-01-16 12:39 ` [PATCH v4 08/15] sched: Export hidden tracepoints to modules Gabriele Monaco
2026-01-16 14:00   ` Phil Auld
2026-01-16 14:24     ` Gabriele Monaco
2026-01-16 12:39 ` [PATCH v4 09/15] sched: Add deadline tracepoints Gabriele Monaco
2026-01-19 10:20   ` Juri Lelli
2026-01-16 12:39 ` Gabriele Monaco [this message]
2026-01-16 14:50   ` [PATCH v4 10/15] sched: Add task enqueue/dequeue trace points K Prateek Nayak
2026-01-16 15:01     ` Gabriele Monaco
2026-01-16 12:39 ` [PATCH v4 11/15] rv: Add support for per-object monitors in DA/HA Gabriele Monaco
2026-01-16 12:39 ` [PATCH v4 12/15] verification/rvgen: Add support for per-obj monitors Gabriele Monaco
2026-01-16 12:39 ` [PATCH v4 13/15] sched/deadline: Move some utility functions to deadline.h Gabriele Monaco
2026-01-19 10:08   ` Juri Lelli
2026-01-16 12:39 ` [PATCH v4 14/15] rv: Add deadline monitors Gabriele Monaco
2026-01-19 11:04   ` Juri Lelli
2026-01-19 11:35     ` Gabriele Monaco
2026-01-19 13:16       ` Juri Lelli
2026-01-16 12:39 ` [PATCH v4 15/15] rv: Add dl_server specific monitors Gabriele Monaco

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=20260116123911.130300-11-gmonaco@redhat.com \
    --to=gmonaco@redhat.com \
    --cc=jkacur@redhat.com \
    --cc=jlelli@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-trace-kernel@vger.kernel.org \
    --cc=mhiramat@kernel.org \
    --cc=mingo@redhat.com \
    --cc=namcao@linutronix.de \
    --cc=peterz@infradead.org \
    --cc=rostedt@goodmis.org \
    --cc=tglozar@redhat.com \
    --cc=williams@redhat.com \
    /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