Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:kernel\sched\debug.c Create Date:2022-07-28 09:43:52
Last Modify:2020-03-17 13:39:02 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:sched_feat_show

Proto:static int sched_feat_show(struct seq_file *m, void *v)

Type:int

Parameter:

TypeParameterName
struct seq_file *m
void *v
63  When i < __SCHED_FEAT_NR cycle
64  If Not (sysctl_sched_features & 1UL << i ) Then seq_puts(m, "NO_")
66  seq_printf(m, "%s ", sched_feat_names[i])
68  seq_puts(m, "\n")
70  Return 0