函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:kernel\trace\trace_events_hist.c Create Date:2022-07-27 13:37:51
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:alloc_synth_event

函数原型:static struct synth_event *alloc_synth_event(const char *name, int n_fields, struct synth_field **fields)

返回类型:struct synth_event

参数:

类型参数名称
const char *name
intn_fields
struct synth_field **fields
1247  event等于分配内存并置零
1248  如果非event
1249  event等于错误号
1250  转到:out
1253  name等于kstrdup(name, GFP_KERNEL)
1254  如果非name
1255  kfree(event)
1256  event等于错误号
1257  转到:out
1260  fields等于分配数组内存并置零
1261  如果非fields
1262  free_synth_event(event)
1263  event等于错误号
1264  转到:out
1267  dyn_event_init( & devent, & synth_event_ops)
1269 i小于n_fields循环fields[i]等于fields[i]
1272  n_fields等于n_fields
1273  out :
1274  返回:event
调用者
名称描述
__create_synth_event