blob: 4007fe95cf42c103a828685d488cf121483dc36e [file] [log] [blame]
Tom Zanussi726721a2020-05-28 14:32:37 -05001// SPDX-License-Identifier: GPL-2.0
2#ifndef __TRACE_SYNTH_H
3#define __TRACE_SYNTH_H
4
5#include "trace_dynevent.h"
6
7#define SYNTH_SYSTEM "synthetic"
8#define SYNTH_FIELDS_MAX 32
9
Tom Zanussi4a4a56b2020-10-04 17:14:03 -050010#define STR_VAR_LEN_MAX MAX_FILTER_STR_VAL /* must be multiple of sizeof(u64) */
Tom Zanussi726721a2020-05-28 14:32:37 -050011
12struct synth_field {
13 char *type;
14 char *name;
15 size_t size;
16 unsigned int offset;
Steven Rostedt (VMware)3b139112021-07-21 19:10:08 -040017 unsigned int field_pos;
Tom Zanussi726721a2020-05-28 14:32:37 -050018 bool is_signed;
19 bool is_string;
Tom Zanussibd826312020-10-04 17:14:06 -050020 bool is_dynamic;
Tom Zanussi726721a2020-05-28 14:32:37 -050021};
22
23struct synth_event {
24 struct dyn_event devent;
25 int ref;
26 char *name;
27 struct synth_field **fields;
28 unsigned int n_fields;
Tom Zanussibd826312020-10-04 17:14:06 -050029 struct synth_field **dynamic_fields;
30 unsigned int n_dynamic_fields;
Tom Zanussi726721a2020-05-28 14:32:37 -050031 unsigned int n_u64;
32 struct trace_event_class class;
33 struct trace_event_call call;
34 struct tracepoint *tp;
35 struct module *mod;
36};
37
38extern struct synth_event *find_synth_event(const char *name);
39
40#endif /* __TRACE_SYNTH_H */