Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:kernel\cgroup\cgroup.c Create Date:2022-07-28 11:09:49
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:cgroup_seqfile_show

Proto:static int cgroup_seqfile_show(struct seq_file *m, void *arg)

Type:int

Parameter:

TypeParameterName
struct seq_file *m
void *arg
3757  cft = /css accessors for cftype->seq_*() operations
3758  css = seq_css(m)
3760  If seq_show Then Return seq_show(m, arg)
3763  If read_u64 Then seq_printf(m, "%llu\n", read_u64(css, cft))
3765  Else if read_s64 Then seq_printf(m, "%lld\n", read_s64(css, cft))
3767  Else Return -EINVAL
3769  Return 0