函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

函数名称:onmatch_parse

函数原型:static struct action_data *onmatch_parse(struct trace_array *tr, char *str)

返回类型:struct action_data

参数:

类型参数名称
struct trace_array *tr
char *str
4420  ret等于负EINVAL
4422  data等于分配内存并置零
4423  如果非data则返回:错误号
4426  match_event等于分割字符串
4427  如果非match_event或非str
4428  hist_err(tr, HIST_ERR_NO_CLOSING_PAREN, errpos(match_event))
4429  转到:free
4432  match_event_system等于分割字符串
4433  如果非match_event
4434  hist_err(tr, HIST_ERR_SUBSYS_NOT_FOUND, errpos(match_event_system))
4435  转到:free
4438  如果是错误
4439  hist_err(tr, HIST_ERR_INVALID_SUBSYS_EVENT, errpos(match_event))
4440  转到:free
4443  event等于kstrdup(match_event, GFP_KERNEL)
4444  如果非event
4445  ret等于负ENOMEM
4446  转到:free
4449  event_system等于kstrdup(match_event_system, GFP_KERNEL)
4450  如果非event_system
4451  ret等于负ENOMEM
4452  转到:free
4455  ret等于action_parse(tr, str, data, HANDLER_ONMATCH)
4456  如果ret则转到:free
4458  out :
4459  返回:data
4460  free :
4461  onmatch_destroy(data)
4462  data等于错误号
4463  转到:out
调用者
名称描述
parse_actions