Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

latencytop: use correct kernel-doc format for func params

Use a ':' instead of a '-' after function parameters to eliminate
kernel-doc warnings.

kernel/latencytop.c:177: warning: Function parameter or struct member 'tsk' not described in '__account_scheduler_latency'
../kernel/latencytop.c:177: warning: Function parameter or struct member 'usecs' not described in '__account_scheduler_latency'
../kernel/latencytop.c:177: warning: Function parameter or struct member 'inter' not described in '__account_scheduler_latency'

Link: https://lkml.kernel.org/r/20250111063019.910730-1-rdunlap@infradead.org
Fixes: ad0b0fd554df ("sched, latencytop: incorporate review feedback from Andrew Morton")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>

authored by

Randy Dunlap and committed by
Andrew Morton
69079443 2b97aaf7

+3 -3
+3 -3
kernel/latencytop.c
··· 158 158 159 159 /** 160 160 * __account_scheduler_latency - record an occurred latency 161 - * @tsk - the task struct of the task hitting the latency 162 - * @usecs - the duration of the latency in microseconds 163 - * @inter - 1 if the sleep was interruptible, 0 if uninterruptible 161 + * @tsk: the task struct of the task hitting the latency 162 + * @usecs: the duration of the latency in microseconds 163 + * @inter: 1 if the sleep was interruptible, 0 if uninterruptible 164 164 * 165 165 * This function is the main entry point for recording latency entries 166 166 * as called by the scheduler.