Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:kernel\time\timekeeping_debug.c Create Date:2022-07-28 10:52:24
Last Modify:2020-03-17 14:56:32 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:tk_debug_sleep_time_show

Proto:static int tk_debug_sleep_time_show(struct seq_file *s, void *data)

Type:int

Parameter:

TypeParameterName
struct seq_file *s
void *data
25  seq_puts(s, " time (secs) count\n")
26  seq_puts(s, "------------------------------\n")
27  When bin < 32 cycle
28  If sleep_time_bin[bin] == 0 Then Continue
30  seq_printf(s, "%10u - %-10u %4u\n", bin ? 1 << (bin - 1) : 0, 1 << bin, sleep_time_bin[bin])
34  Return 0