Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

Name:compatible_field

Proto:static bool compatible_field(struct ftrace_event_field *field, struct ftrace_event_field *test_field)

Type:bool

Parameter:

TypeParameterName
struct ftrace_event_field *field
struct ftrace_event_field *test_field
5850  If field == test_field Then Return true
5852  If (field == NULL || test_field == NULL) Then Return false
5854  If strcmp(name, name) != 0 Then Return false
5856  If strcmp(type, type) != 0 Then Return false
5858  If size != size Then Return false
5860  If is_signed != is_signed Then Return false
5863  Return true
Caller
NameDescribe
hist_trigger_match