Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

Name:s_show

Proto:static int s_show(struct seq_file *m, void *p)

Type:int

Parameter:

TypeParameterName
struct seq_file *m
void *p
598  iter = private
601  If Not name[0] Then Return 0
604  value = show_value ? value : NULL
606  If module_name[0] Then
613  type = If exported Then toupper(type) Else tolower(type)
615  seq_printf(m, "%px %c %s\t[%s]\n", value, type, name, module_name)
617  Else seq_printf(m, "%px %c %s\n", value, type, name)
620  Return 0