stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 6.1] softirq: Add trace points for tasklet entry/exit
       [not found] <20250812161755.609600-1-sumanth.gavini.ref@yahoo.com>
@ 2025-08-12 16:17 ` Sumanth Gavini
  2025-08-21 18:40   ` Sumanth Gavini
  2025-08-22 13:07   ` Greg KH
  0 siblings, 2 replies; 7+ messages in thread
From: Sumanth Gavini @ 2025-08-12 16:17 UTC (permalink / raw)
  To: rostedt, mhiramat, sumanth.gavini, tglx, jstultz, clingutla,
	mingo, sashal, boqun.feng, gregkh, ryotkkr98, kprateek.nayak
  Cc: linux-kernel, stable, J . Avila

commit f4bf3ca2e5cba655824b6e0893a98dfb33ed24e5 upstream.

Tasklets are supposed to finish their work quickly and should not block the
current running process, but it is not guaranteed that they do so.

Currently softirq_entry/exit can be used to analyse the total tasklets
execution time, but that's not helpful to track individual tasklets
execution time. That makes it hard to identify tasklet functions, which
take more time than expected.

Add tasklet_entry/exit trace point support to track individual tasklet
execution.

Trivial usage example:
   # echo 1 > /sys/kernel/debug/tracing/events/irq/tasklet_entry/enable
   # echo 1 > /sys/kernel/debug/tracing/events/irq/tasklet_exit/enable
   # cat /sys/kernel/debug/tracing/trace
 # tracer: nop
 #
 # entries-in-buffer/entries-written: 4/4   #P:4
 #
 #                                _-----=> irqs-off/BH-disabled
 #                               / _----=> need-resched
 #                              | / _---=> hardirq/softirq
 #                              || / _--=> preempt-depth
 #                              ||| / _-=> migrate-disable
 #                              |||| /     delay
 #           TASK-PID     CPU#  |||||  TIMESTAMP  FUNCTION
 #              | |         |   |||||     |         |
           <idle>-0       [003] ..s1.   314.011428: tasklet_entry: tasklet=0xffffa01ef8db2740 function=tcp_tasklet_func
           <idle>-0       [003] ..s1.   314.011432: tasklet_exit: tasklet=0xffffa01ef8db2740 function=tcp_tasklet_func
           <idle>-0       [003] ..s1.   314.017369: tasklet_entry: tasklet=0xffffa01ef8db2740 function=tcp_tasklet_func
           <idle>-0       [003] ..s1.   314.017371: tasklet_exit: tasklet=0xffffa01ef8db2740 function=tcp_tasklet_func

Signed-off-by: Lingutla Chandrasekhar <clingutla@codeaurora.org>
Signed-off-by: J. Avila <elavila@google.com>
Signed-off-by: John Stultz <jstultz@google.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Link: https://lore.kernel.org/r/20230407230526.1685443-1-jstultz@google.com

[elavila: Port to android-mainline]
[jstultz: Rebased to upstream, cut unused trace points, added
 comments for the tracepoints, reworded commit]

Signed-off-by: Sumanth Gavini <sumanth.gavini@yahoo.com>
---
 include/trace/events/irq.h | 47 ++++++++++++++++++++++++++++++++++++++
 kernel/softirq.c           |  9 ++++++--
 2 files changed, 54 insertions(+), 2 deletions(-)

diff --git a/include/trace/events/irq.h b/include/trace/events/irq.h
index eeceafaaea4c..a07b4607b663 100644
--- a/include/trace/events/irq.h
+++ b/include/trace/events/irq.h
@@ -160,6 +160,53 @@ DEFINE_EVENT(softirq, softirq_raise,
 	TP_ARGS(vec_nr)
 );
 
+DECLARE_EVENT_CLASS(tasklet,
+
+	TP_PROTO(struct tasklet_struct *t, void *func),
+
+	TP_ARGS(t, func),
+
+	TP_STRUCT__entry(
+		__field(	void *,	tasklet)
+		__field(	void *,	func)
+	),
+
+	TP_fast_assign(
+		__entry->tasklet = t;
+		__entry->func = func;
+	),
+
+	TP_printk("tasklet=%ps function=%ps", __entry->tasklet, __entry->func)
+);
+
+/**
+ * tasklet_entry - called immediately before the tasklet is run
+ * @t: tasklet pointer
+ * @func: tasklet callback or function being run
+ *
+ * Used to find individual tasklet execution time
+ */
+DEFINE_EVENT(tasklet, tasklet_entry,
+
+	TP_PROTO(struct tasklet_struct *t, void *func),
+
+	TP_ARGS(t, func)
+);
+
+/**
+ * tasklet_exit - called immediately after the tasklet is run
+ * @t: tasklet pointer
+ * @func: tasklet callback or function being run
+ *
+ * Used to find individual tasklet execution time
+ */
+DEFINE_EVENT(tasklet, tasklet_exit,
+
+	TP_PROTO(struct tasklet_struct *t, void *func),
+
+	TP_ARGS(t, func)
+);
+
 #endif /*  _TRACE_IRQ_H */
 
 /* This part must be outside protection */
diff --git a/kernel/softirq.c b/kernel/softirq.c
index 9ab5ca399a99..fadc6bbda27b 100644
--- a/kernel/softirq.c
+++ b/kernel/softirq.c
@@ -822,10 +822,15 @@ static void tasklet_action_common(struct softirq_action *a,
 		if (tasklet_trylock(t)) {
 			if (!atomic_read(&t->count)) {
 				if (tasklet_clear_sched(t)) {
-					if (t->use_callback)
+					if (t->use_callback) {
+						trace_tasklet_entry(t, t->callback);
 						t->callback(t);
-					else
+						trace_tasklet_exit(t, t->callback);
+					} else {
+						trace_tasklet_entry(t, t->func);
 						t->func(t->data);
+						trace_tasklet_exit(t, t->func);
+					}
 				}
 				tasklet_unlock(t);
 				continue;
-- 
2.43.0


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

* [PATCH 6.1] softirq: Add trace points for tasklet entry/exit
  2025-08-12 16:17 ` [PATCH 6.1] softirq: Add trace points for tasklet entry/exit Sumanth Gavini
@ 2025-08-21 18:40   ` Sumanth Gavini
  2025-08-21 18:54     ` John Stultz
  2025-08-22 13:07   ` Greg KH
  1 sibling, 1 reply; 7+ messages in thread
From: Sumanth Gavini @ 2025-08-21 18:40 UTC (permalink / raw)
  To: sumanth.gavini
  Cc: boqun.feng, clingutla, elavila, gregkh, jstultz, kprateek.nayak,
	linux-kernel, mhiramat, mingo, rostedt, ryotkkr98, sashal, stable,
	tglx

Hi All,

Just following up on my patch submitted with subject "Subject: [PATCH 6.1] softirq: Add trace points for tasklet entry/exit".

Original message: https://lore.kernel.org/all/20250812161755.609600-1-sumanth.gavini@yahoo.com/

Would you have any feedback on this change? I'd be happy to address any comments or concerns.

This patch fixes this three bugs
1. https://syzkaller.appspot.com/bug?extid=5284a86a0b0a31ab266a
2. https://syzkaller.appspot.com/bug?extid=296695c8ae3c7da3d511
3. https://syzkaller.appspot.com/bug?extid=97f2ac670e5e7a3b48e4

Thank you for your time and consideration.

Regards,
Sumanth Gavini

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

* Re: [PATCH 6.1] softirq: Add trace points for tasklet entry/exit
  2025-08-21 18:40   ` Sumanth Gavini
@ 2025-08-21 18:54     ` John Stultz
  2025-08-21 21:02       ` Sumanth Gavini
  0 siblings, 1 reply; 7+ messages in thread
From: John Stultz @ 2025-08-21 18:54 UTC (permalink / raw)
  To: Sumanth Gavini
  Cc: boqun.feng, clingutla, elavila, gregkh, kprateek.nayak,
	linux-kernel, mhiramat, mingo, rostedt, ryotkkr98, sashal, stable,
	tglx

On Thu, Aug 21, 2025 at 11:41 AM Sumanth Gavini
<sumanth.gavini@yahoo.com> wrote:
>
> Hi All,
>
> Just following up on my patch submitted with subject "Subject: [PATCH 6.1] softirq: Add trace points for tasklet entry/exit".
>
> Original message: https://lore.kernel.org/all/20250812161755.609600-1-sumanth.gavini@yahoo.com/
>
> Would you have any feedback on this change? I'd be happy to address any comments or concerns.
>
> This patch fixes this three bugs
> 1. https://syzkaller.appspot.com/bug?extid=5284a86a0b0a31ab266a
> 2. https://syzkaller.appspot.com/bug?extid=296695c8ae3c7da3d511
> 3. https://syzkaller.appspot.com/bug?extid=97f2ac670e5e7a3b48e4

How does a patch adding a tracepoint fix the bugs highlighted here?
It seems maybe it would help in debugging those issues, but I'm not
sure I see how it would fix them.

thanks
-john

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

* [PATCH 6.1] softirq: Add trace points for tasklet entry/exit
  2025-08-21 18:54     ` John Stultz
@ 2025-08-21 21:02       ` Sumanth Gavini
  2025-08-21 22:05         ` John Stultz
  0 siblings, 1 reply; 7+ messages in thread
From: Sumanth Gavini @ 2025-08-21 21:02 UTC (permalink / raw)
  To: jstultz
  Cc: boqun.feng, clingutla, elavila, gregkh, kprateek.nayak,
	linux-kernel, mhiramat, mingo, rostedt, ryotkkr98, sashal, stable,
	sumanth.gavini, tglx

>>
>> Hi All,
>>
>> Just following up on my patch submitted with subject "Subject: [PATCH 6.1] softirq: Add trace points for tasklet entry/exit".
>>
>> Original message: https://lore.kernel.org/all/20250812161755.609600-1-sumanth.gavini@yahoo.com/
>>
>> Would you have any feedback on this change? I'd be happy to address any comments or concerns.
>>
>> This patch fixes this three bugs
>> 1. https://syzkaller.appspot.com/bug?extid=5284a86a0b0a31ab266a
>> 2. https://syzkaller.appspot.com/bug?extid=296695c8ae3c7da3d511
>> 3. https://syzkaller.appspot.com/bug?extid=97f2ac670e5e7a3b48e4

> How does a patch adding a tracepoint fix the bugs highlighted here?
> It seems maybe it would help in debugging those issues, but I'm not
> sure I see how it would fix them.

This patch is related to linux 6.1/backports, the backports(https://syzkaller.appspot.com/linux-6.1/backports)
I see this patch would fix these bugs. Let me know if my understand is wrong. 

Regards,
Sumanth

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

* Re: [PATCH 6.1] softirq: Add trace points for tasklet entry/exit
  2025-08-21 21:02       ` Sumanth Gavini
@ 2025-08-21 22:05         ` John Stultz
  0 siblings, 0 replies; 7+ messages in thread
From: John Stultz @ 2025-08-21 22:05 UTC (permalink / raw)
  To: Sumanth Gavini
  Cc: boqun.feng, clingutla, elavila, gregkh, kprateek.nayak,
	linux-kernel, mhiramat, mingo, rostedt, ryotkkr98, sashal, stable,
	tglx

On Thu, Aug 21, 2025 at 2:02 PM Sumanth Gavini <sumanth.gavini@yahoo.com> wrote:
> >>
> >> Just following up on my patch submitted with subject "Subject: [PATCH 6.1] softirq: Add trace points for tasklet entry/exit".
> >>
> >> Original message: https://lore.kernel.org/all/20250812161755.609600-1-sumanth.gavini@yahoo.com/
> >>
> >> Would you have any feedback on this change? I'd be happy to address any comments or concerns.
> >>
> >> This patch fixes this three bugs
> >> 1. https://syzkaller.appspot.com/bug?extid=5284a86a0b0a31ab266a
> >> 2. https://syzkaller.appspot.com/bug?extid=296695c8ae3c7da3d511
> >> 3. https://syzkaller.appspot.com/bug?extid=97f2ac670e5e7a3b48e4
>
> > How does a patch adding a tracepoint fix the bugs highlighted here?
> > It seems maybe it would help in debugging those issues, but I'm not
> > sure I see how it would fix them.
>
> This patch is related to linux 6.1/backports, the backports(https://syzkaller.appspot.com/linux-6.1/backports)
> I see this patch would fix these bugs. Let me know if my understand is wrong.

But that doesn't explain why or how it fixes the bugs.  I'm not
opposed to stable taking this, but the reasoning should be clear, if
that is the motivation for including this change.
I fret there is something incidental in this patch that avoids the
problem, and that those issues may need a deeper fix rather then to
hide them with this change.

thanks
-john

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

* Re: [PATCH 6.1] softirq: Add trace points for tasklet entry/exit
  2025-08-12 16:17 ` [PATCH 6.1] softirq: Add trace points for tasklet entry/exit Sumanth Gavini
  2025-08-21 18:40   ` Sumanth Gavini
@ 2025-08-22 13:07   ` Greg KH
  2025-08-23 17:42     ` Thomas Gleixner
  1 sibling, 1 reply; 7+ messages in thread
From: Greg KH @ 2025-08-22 13:07 UTC (permalink / raw)
  To: Sumanth Gavini
  Cc: rostedt, mhiramat, tglx, jstultz, clingutla, mingo, sashal,
	boqun.feng, ryotkkr98, kprateek.nayak, linux-kernel, stable,
	J . Avila

On Tue, Aug 12, 2025 at 11:17:54AM -0500, Sumanth Gavini wrote:
> commit f4bf3ca2e5cba655824b6e0893a98dfb33ed24e5 upstream.
> 
> Tasklets are supposed to finish their work quickly and should not block the
> current running process, but it is not guaranteed that they do so.
> 
> Currently softirq_entry/exit can be used to analyse the total tasklets
> execution time, but that's not helpful to track individual tasklets
> execution time. That makes it hard to identify tasklet functions, which
> take more time than expected.
> 
> Add tasklet_entry/exit trace point support to track individual tasklet
> execution.
> 
> Trivial usage example:
>    # echo 1 > /sys/kernel/debug/tracing/events/irq/tasklet_entry/enable
>    # echo 1 > /sys/kernel/debug/tracing/events/irq/tasklet_exit/enable
>    # cat /sys/kernel/debug/tracing/trace
>  # tracer: nop
>  #
>  # entries-in-buffer/entries-written: 4/4   #P:4
>  #
>  #                                _-----=> irqs-off/BH-disabled
>  #                               / _----=> need-resched
>  #                              | / _---=> hardirq/softirq
>  #                              || / _--=> preempt-depth
>  #                              ||| / _-=> migrate-disable
>  #                              |||| /     delay
>  #           TASK-PID     CPU#  |||||  TIMESTAMP  FUNCTION
>  #              | |         |   |||||     |         |
>            <idle>-0       [003] ..s1.   314.011428: tasklet_entry: tasklet=0xffffa01ef8db2740 function=tcp_tasklet_func
>            <idle>-0       [003] ..s1.   314.011432: tasklet_exit: tasklet=0xffffa01ef8db2740 function=tcp_tasklet_func
>            <idle>-0       [003] ..s1.   314.017369: tasklet_entry: tasklet=0xffffa01ef8db2740 function=tcp_tasklet_func
>            <idle>-0       [003] ..s1.   314.017371: tasklet_exit: tasklet=0xffffa01ef8db2740 function=tcp_tasklet_func
> 
> Signed-off-by: Lingutla Chandrasekhar <clingutla@codeaurora.org>
> Signed-off-by: J. Avila <elavila@google.com>
> Signed-off-by: John Stultz <jstultz@google.com>
> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
> Reviewed-by: Steven Rostedt (Google) <rostedt@goodmis.org>
> Link: https://lore.kernel.org/r/20230407230526.1685443-1-jstultz@google.com
> 
> [elavila: Port to android-mainline]

This is not android-mainline, this is the normal stable tree.

And I'm with John, this makes no sense as to why you need/want these.  I
think that the syzbot report is bogus, sorry.  Please prove me wrong :)

thanks,

greg k-h

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

* Re: [PATCH 6.1] softirq: Add trace points for tasklet entry/exit
  2025-08-22 13:07   ` Greg KH
@ 2025-08-23 17:42     ` Thomas Gleixner
  0 siblings, 0 replies; 7+ messages in thread
From: Thomas Gleixner @ 2025-08-23 17:42 UTC (permalink / raw)
  To: Greg KH, Sumanth Gavini
  Cc: rostedt, mhiramat, jstultz, clingutla, mingo, sashal, boqun.feng,
	ryotkkr98, kprateek.nayak, linux-kernel, stable, J . Avila

On Fri, Aug 22 2025 at 15:07, Greg KH wrote:
> On Tue, Aug 12, 2025 at 11:17:54AM -0500, Sumanth Gavini wrote:
>
> And I'm with John, this makes no sense as to why you need/want these.  I
> think that the syzbot report is bogus, sorry.  Please prove me wrong :)

It was validated by AI (Absense of Intelligence) that adding tracepoints
makes the problem go away! So why do you want extra proof?

Thanks,

        tglx


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

end of thread, other threads:[~2025-08-23 17:42 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20250812161755.609600-1-sumanth.gavini.ref@yahoo.com>
2025-08-12 16:17 ` [PATCH 6.1] softirq: Add trace points for tasklet entry/exit Sumanth Gavini
2025-08-21 18:40   ` Sumanth Gavini
2025-08-21 18:54     ` John Stultz
2025-08-21 21:02       ` Sumanth Gavini
2025-08-21 22:05         ` John Stultz
2025-08-22 13:07   ` Greg KH
2025-08-23 17:42     ` Thomas Gleixner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).