From: Gabriele Monaco <gmonaco@redhat.com>
To: Peter Zijlstra <peterz@infradead.org>
Cc: linux-kernel@vger.kernel.org,
Steven Rostedt <rostedt@goodmis.org>,
Ingo Molnar <mingo@redhat.com>,
Masami Hiramatsu <mhiramat@kernel.org>,
linux-trace-kernel@vger.kernel.org
Subject: Re: [RFC PATCH 03/11] sched: Add sched tracepoints for RV task model
Date: Thu, 06 Feb 2025 09:36:41 +0100 [thread overview]
Message-ID: <d8187fcd53c62272d7e1a8dad327c4f2a5f07188.camel@redhat.com> (raw)
In-Reply-To: <20250206081942.GJ7145@noisy.programming.kicks-ass.net>
On Thu, 2025-02-06 at 09:19 +0100, Peter Zijlstra wrote:
> On Thu, Feb 06, 2025 at 09:09:39AM +0100, Gabriele Monaco wrote:
>
> > diff --git a/include/linux/sched.h b/include/linux/sched.h
> > index 9632e3318e0d6..af9fa18035c71 100644
> > --- a/include/linux/sched.h
> > +++ b/include/linux/sched.h
> > @@ -226,12 +226,14 @@ struct user_event_mm;
> > #define
> > __set_current_state(state_value) \
> > do
> > { \
> > debug_normal_state_change((state_value));
> > \
> > + trace_set_current_state(state_value);
> > \
> > WRITE_ONCE(current->__state,
> > (state_value)); \
> > } while (0)
> >
> > #define
> > set_current_state(state_value) \
> > do
> > { \
> > debug_normal_state_change((state_value));
> > \
> > + trace_set_current_state(state_value);
> > \
> > smp_store_mb(current->__state,
> > (state_value)); \
> > } while (0)
> >
> > @@ -247,6 +249,7 @@ struct user_event_mm;
> >
> > \
> > raw_spin_lock_irqsave(¤t->pi_lock,
> > flags); \
> > debug_special_state_change((state_value));
> > \
> > + trace_set_current_state(state_value);
> > \
> > WRITE_ONCE(current->__state,
> > (state_value)); \
> > raw_spin_unlock_irqrestore(¤t->pi_lock,
> > flags); \
> > } while (0)
> > @@ -282,6 +285,7 @@ struct user_event_mm;
> > raw_spin_lock(¤t-
> > >pi_lock); \
> > current->saved_state = current-
> > >__state; \
> > debug_rtlock_wait_set_state();
> > \
> > + trace_set_current_state(TASK_RTLOCK_WAIT);
> > \
> > WRITE_ONCE(current->__state,
> > TASK_RTLOCK_WAIT); \
> > raw_spin_unlock(¤t-
> > >pi_lock); \
> > } while (0);
> > @@ -291,6 +295,7 @@ struct user_event_mm;
> > lockdep_assert_irqs_disabled();
> > \
> > raw_spin_lock(¤t-
> > >pi_lock); \
> > debug_rtlock_wait_restore_state();
> > \
> > + trace_set_current_state(TASK_RUNNING);
> > \
> > WRITE_ONCE(current->__state, current-
> > >saved_state); \
> > current->saved_state =
> > TASK_RUNNING; \
> > raw_spin_unlock(¤t-
> > >pi_lock); \
>
> > diff --git a/kernel/sched/core.c b/kernel/sched/core.c
> > index 165c90ba64ea9..fb5f8aa61ef5d 100644
> > --- a/kernel/sched/core.c
> > +++ b/kernel/sched/core.c
> > @@ -491,6 +491,12 @@ sched_core_dequeue(struct rq *rq, struct
> > task_struct *p, int flags) { }
> >
> > #endif /* CONFIG_SCHED_CORE */
> >
> > +void trace_set_current_state(int state_value)
> > +{
> > + trace_sched_set_state_tp(current, current->__state,
> > state_value);
> > +}
> > +EXPORT_SYMBOL(trace_set_current_state);
>
> Urgh, why !?!
>
Do you mean why exporting it?
At first I was puzzled too (this line is borrowed from Daniel), but the
thing is: set_current_state and friends are macros called by any sort
of code (e.g. modules), this seems the easiest way without messing up
with the current code.
I'm not sure if it would be cleaner to just drop this function and
define it directly in the header (including also trace/events/sched.h
there). It felt like files including sched shouldn't know about
tracepoints.
What do you think would be better?
next prev parent reply other threads:[~2025-02-06 8:36 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-06 8:09 [RFC PATCH 00/11] rv: Add scheduler specification monitors Gabriele Monaco
2025-02-06 8:09 ` [RFC PATCH 01/11] tracing: Fix DECLARE_TRACE_CONDITION Gabriele Monaco
2025-02-06 8:09 ` [RFC PATCH 02/11] rv: Add license identifiers to monitor files Gabriele Monaco
2025-02-06 8:09 ` [RFC PATCH 03/11] sched: Add sched tracepoints for RV task model Gabriele Monaco
2025-02-06 8:19 ` Peter Zijlstra
2025-02-06 8:36 ` Gabriele Monaco [this message]
2025-02-06 8:57 ` Peter Zijlstra
2025-02-06 11:47 ` Gabriele Monaco
2025-02-06 13:36 ` Steven Rostedt
2025-02-06 8:09 ` [RFC PATCH 04/11] rv: Add option for nested monitors and include sched Gabriele Monaco
2025-02-06 8:09 ` [RFC PATCH 05/11] rv: Add sco and tss per-cpu monitors Gabriele Monaco
2025-02-06 8:09 ` [RFC PATCH 06/11] rv: Add snroc per-task monitor Gabriele Monaco
2025-02-06 8:09 ` [RFC PATCH 07/11] rv: Add scpd, snep and sncid per-cpu monitors Gabriele Monaco
2025-02-06 8:09 ` [RFC PATCH 08/11] tools/rv: Add support for nested monitors Gabriele Monaco
2025-02-06 8:09 ` [RFC PATCH 09/11] verification/dot2k: " Gabriele Monaco
2025-02-06 8:09 ` [RFC PATCH 10/11] Documentation/rv: Add docs for the sched monitors Gabriele Monaco
2025-02-06 8:09 ` [RFC PATCH 11/11] tools/rv: Allow rv list to filter for container Gabriele Monaco
2025-02-07 10:55 ` [RFC PATCH 00/11] rv: Add scheduler specification monitors Juri Lelli
2025-02-07 11:36 ` Gabriele Monaco
2025-02-07 14:27 ` Juri Lelli
2025-02-07 14:57 ` Gabriele Monaco
2025-02-10 12:56 ` Gabriele Monaco
2025-02-11 9:38 ` Juri Lelli
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=d8187fcd53c62272d7e1a8dad327c4f2a5f07188.camel@redhat.com \
--to=gmonaco@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-trace-kernel@vger.kernel.org \
--cc=mhiramat@kernel.org \
--cc=mingo@redhat.com \
--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
all inboxes | Powered by JetHome®