Refactoring: hide internal fields of ring buffer context
[lttng-ust.git] / include / lttng / ust-tracepoint-event.h
1 /*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright (C) 2011-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 */
6
7 #include <stdint.h>
8 #include <stdio.h>
9 #include <stdlib.h>
10 #include <urcu/compiler.h>
11 #include <urcu/rculist.h>
12 #include <lttng/ust-events.h>
13 #include <lttng/ringbuffer-context.h>
14 #include <lttng/ust-arch.h>
15 #include <lttng/ust-compiler.h>
16 #include <lttng/tracepoint.h>
17 #include <lttng/ust-endian.h>
18 #include <string.h>
19
20 #define __LTTNG_UST_NULL_STRING "(null)"
21
22 #undef tp_list_for_each_entry_rcu
23 #define tp_list_for_each_entry_rcu(pos, head, member) \
24 for (pos = cds_list_entry(tp_rcu_dereference((head)->next), __typeof__(*pos), member); \
25 &pos->member != (head); \
26 pos = cds_list_entry(tp_rcu_dereference(pos->member.next), __typeof__(*pos), member))
27
28 /*
29 * TRACEPOINT_EVENT_CLASS declares a class of tracepoints receiving the
30 * same arguments and having the same field layout.
31 *
32 * TRACEPOINT_EVENT_INSTANCE declares an instance of a tracepoint, with
33 * its own provider and name. It refers to a class (template).
34 *
35 * TRACEPOINT_EVENT declared both a class and an instance and does a
36 * direct mapping from the instance to the class.
37 */
38
39 #undef TRACEPOINT_EVENT
40 #define TRACEPOINT_EVENT(_provider, _name, _args, _fields) \
41 _TRACEPOINT_EVENT_CLASS(_provider, _name, \
42 _TP_PARAMS(_args), \
43 _TP_PARAMS(_fields)) \
44 _TRACEPOINT_EVENT_INSTANCE(_provider, _name, _name, \
45 _TP_PARAMS(_args))
46
47 #undef TRACEPOINT_EVENT_CLASS
48 #define TRACEPOINT_EVENT_CLASS(_provider, _name, _args, _fields) \
49 _TRACEPOINT_EVENT_CLASS(_provider, _name, _TP_PARAMS(_args), _TP_PARAMS(_fields))
50
51 #undef TRACEPOINT_EVENT_INSTANCE
52 #define TRACEPOINT_EVENT_INSTANCE(_provider, _template, _name, _args) \
53 _TRACEPOINT_EVENT_INSTANCE(_provider, _template, _name, _TP_PARAMS(_args))
54
55 /* Helpers */
56 #define _TP_ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
57
58 #define _tp_max_t(type, x, y) \
59 ({ \
60 type __max1 = (x); \
61 type __max2 = (y); \
62 __max1 > __max2 ? __max1: __max2; \
63 })
64
65 /*
66 * Stage 0 of tracepoint event generation.
67 *
68 * Check that each TRACEPOINT_EVENT provider argument match the
69 * TRACEPOINT_PROVIDER by creating dummy callbacks.
70 */
71
72 /* Reset all macros within TRACEPOINT_EVENT */
73 #include <lttng/ust-tracepoint-event-reset.h>
74
75 static inline lttng_ust_notrace
76 void _TP_COMBINE_TOKENS(__tracepoint_provider_mismatch_, TRACEPOINT_PROVIDER)(void);
77 static inline
78 void _TP_COMBINE_TOKENS(__tracepoint_provider_mismatch_, TRACEPOINT_PROVIDER)(void)
79 {
80 }
81
82 #undef _TRACEPOINT_EVENT_CLASS
83 #define _TRACEPOINT_EVENT_CLASS(_provider, _name, _args, _fields) \
84 __tracepoint_provider_mismatch_##_provider();
85
86 #undef _TRACEPOINT_EVENT_INSTANCE
87 #define _TRACEPOINT_EVENT_INSTANCE(_provider, _template, _name, _args) \
88 __tracepoint_provider_mismatch_##_provider();
89
90 static inline lttng_ust_notrace
91 void _TP_COMBINE_TOKENS(__tracepoint_provider_check_, TRACEPOINT_PROVIDER)(void);
92 static inline
93 void _TP_COMBINE_TOKENS(__tracepoint_provider_check_, TRACEPOINT_PROVIDER)(void)
94 {
95 #include TRACEPOINT_INCLUDE
96 }
97
98 /*
99 * Stage 0.1 of tracepoint event generation.
100 *
101 * Check that each TRACEPOINT_EVENT provider:name does not exceed the
102 * tracepoint name length limit.
103 */
104
105 /* Reset all macros within TRACEPOINT_EVENT */
106 #include <lttng/ust-tracepoint-event-reset.h>
107
108 #undef _TRACEPOINT_EVENT_INSTANCE
109 #define _TRACEPOINT_EVENT_INSTANCE(_provider, _template, _name, _args) \
110 static const char \
111 __tp_name_len_check##_provider##___##_name[LTTNG_UST_ABI_SYM_NAME_LEN] \
112 __attribute__((unused)) = \
113 #_provider ":" #_name;
114
115 #include TRACEPOINT_INCLUDE
116
117 /*
118 * Stage 0.2 of tracepoint event generation.
119 *
120 * Create dummy trace prototypes for each event class, and for each used
121 * template. This will allow checking whether the prototypes from the
122 * class and the instance using the class actually match.
123 */
124
125 /* Reset all macros within TRACEPOINT_EVENT */
126 #include <lttng/ust-tracepoint-event-reset.h>
127
128 #undef TP_ARGS
129 #define TP_ARGS(...) __VA_ARGS__
130
131 #undef _TRACEPOINT_EVENT_INSTANCE
132 #define _TRACEPOINT_EVENT_INSTANCE(_provider, _template, _name, _args) \
133 void __event_template_proto___##_provider##___##_template(_TP_ARGS_DATA_PROTO(_args));
134
135 #undef _TRACEPOINT_EVENT_CLASS
136 #define _TRACEPOINT_EVENT_CLASS(_provider, _name, _args, _fields) \
137 void __event_template_proto___##_provider##___##_name(_TP_ARGS_DATA_PROTO(_args));
138
139 #include TRACEPOINT_INCLUDE
140
141 /*
142 * Stage 0.9 of tracepoint event generation
143 *
144 * Unfolding the enums
145 */
146 #include <lttng/ust-tracepoint-event-reset.h>
147
148 /* Enumeration entry (single value) */
149 #undef ctf_enum_value
150 #define ctf_enum_value(_string, _value) \
151 __LTTNG_COMPOUND_LITERAL(struct lttng_ust_enum_entry, { \
152 .struct_size = sizeof(struct lttng_ust_enum_entry), \
153 .start = { \
154 .value = lttng_ust_is_signed_type(__typeof__(_value)) ? \
155 (long long) (_value) : (_value), \
156 .signedness = lttng_ust_is_signed_type(__typeof__(_value)), \
157 }, \
158 .end = { \
159 .value = lttng_ust_is_signed_type(__typeof__(_value)) ? \
160 (long long) (_value) : (_value), \
161 .signedness = lttng_ust_is_signed_type(__typeof__(_value)), \
162 }, \
163 .string = (_string), \
164 }),
165
166 /* Enumeration entry (range) */
167 #undef ctf_enum_range
168 #define ctf_enum_range(_string, _range_start, _range_end) \
169 __LTTNG_COMPOUND_LITERAL(struct lttng_ust_enum_entry, { \
170 .struct_size = sizeof(struct lttng_ust_enum_entry), \
171 .start = { \
172 .value = lttng_ust_is_signed_type(__typeof__(_range_start)) ? \
173 (long long) (_range_start) : (_range_start), \
174 .signedness = lttng_ust_is_signed_type(__typeof__(_range_start)), \
175 }, \
176 .end = { \
177 .value = lttng_ust_is_signed_type(__typeof__(_range_end)) ? \
178 (long long) (_range_end) : (_range_end), \
179 .signedness = lttng_ust_is_signed_type(__typeof__(_range_end)), \
180 }, \
181 .string = (_string), \
182 }),
183
184 /* Enumeration entry (automatic value; follows the rules of CTF) */
185 #undef ctf_enum_auto
186 #define ctf_enum_auto(_string) \
187 __LTTNG_COMPOUND_LITERAL(struct lttng_ust_enum_entry, { \
188 .struct_size = sizeof(struct lttng_ust_enum_entry), \
189 .start = { \
190 .value = -1ULL, \
191 .signedness = 0, \
192 }, \
193 .end = { \
194 .value = -1ULL, \
195 .signedness = 0, \
196 }, \
197 .string = (_string), \
198 .options = LTTNG_UST_ENUM_ENTRY_OPTION_IS_AUTO, \
199 }),
200
201 #undef TP_ENUM_VALUES
202 #define TP_ENUM_VALUES(...) \
203 __VA_ARGS__
204
205 #undef TRACEPOINT_ENUM
206 #define TRACEPOINT_ENUM(_provider, _name, _values) \
207 struct lttng_ust_enum_entry *__enum_values__##_provider##_##_name[] = { \
208 _values \
209 ctf_enum_value("", 0) /* Dummy, 0-len array forbidden by C99. */ \
210 };
211 #include TRACEPOINT_INCLUDE
212
213 /*
214 * Stage 0.9.1
215 * Verifying array and sequence elements are of an integer type.
216 */
217
218 /* Reset all macros within TRACEPOINT_EVENT */
219 #include <lttng/ust-tracepoint-event-reset.h>
220 #include <lttng/ust-tracepoint-event-write.h>
221 #include <lttng/ust-tracepoint-event-nowrite.h>
222
223 #undef _ctf_array_encoded
224 #define _ctf_array_encoded(_type, _item, _src, _byte_order, \
225 _length, _encoding, _nowrite, \
226 _elem_type_base) \
227 lttng_ust_ctf_array_element_type_is_supported(_type, _item)
228
229 #undef _ctf_sequence_encoded
230 #define _ctf_sequence_encoded(_type, _item, _src, _byte_order, \
231 _length_type, _src_length, _encoding, _nowrite, \
232 _elem_type_base) \
233 lttng_ust_ctf_array_element_type_is_supported(_type, _item)
234
235 #undef TP_FIELDS
236 #define TP_FIELDS(...) __VA_ARGS__ /* Only one used in this phase */
237
238 #undef _TRACEPOINT_EVENT_CLASS
239 #define _TRACEPOINT_EVENT_CLASS(_provider, _name, _args, _fields) \
240 _fields
241
242 #include TRACEPOINT_INCLUDE
243
244 /*
245 * Stage 1 of tracepoint event generation.
246 *
247 * Create event field type metadata section.
248 * Each event produce an array of fields.
249 */
250
251 /* Reset all macros within TRACEPOINT_EVENT */
252 #include <lttng/ust-tracepoint-event-reset.h>
253 #include <lttng/ust-tracepoint-event-write.h>
254 #include <lttng/ust-tracepoint-event-nowrite.h>
255
256 #undef _ctf_integer_ext
257 #define _ctf_integer_ext(_type, _item, _src, _byte_order, _base, _nowrite) \
258 __LTTNG_COMPOUND_LITERAL(struct lttng_ust_event_field, { \
259 .struct_size = sizeof(struct lttng_ust_event_field), \
260 .name = #_item, \
261 .type = lttng_ust_type_integer_define(_type, _byte_order, _base), \
262 .nowrite = _nowrite, \
263 .nofilter = 0, \
264 }),
265
266 #undef _ctf_float
267 #define _ctf_float(_type, _item, _src, _nowrite) \
268 __LTTNG_COMPOUND_LITERAL(struct lttng_ust_event_field, { \
269 .struct_size = sizeof(struct lttng_ust_event_field), \
270 .name = #_item, \
271 .type = lttng_ust_type_float_define(_type), \
272 .nowrite = _nowrite, \
273 .nofilter = 0, \
274 }),
275
276 #undef _ctf_array_encoded
277 #define _ctf_array_encoded(_type, _item, _src, _byte_order, \
278 _length, _encoding, _nowrite, \
279 _elem_type_base) \
280 __LTTNG_COMPOUND_LITERAL(struct lttng_ust_event_field, { \
281 .struct_size = sizeof(struct lttng_ust_event_field), \
282 .name = #_item, \
283 .type = (struct lttng_ust_type_common *) __LTTNG_COMPOUND_LITERAL(struct lttng_ust_type_array, { \
284 .parent = { \
285 .type = lttng_ust_type_array, \
286 }, \
287 .struct_size = sizeof(struct lttng_ust_type_array), \
288 .elem_type = lttng_ust_type_integer_define(_type, _byte_order, _elem_type_base), \
289 .length = _length, \
290 .alignment = 0, \
291 .encoding = lttng_ust_string_encoding_##_encoding, \
292 }), \
293 .nowrite = _nowrite, \
294 .nofilter = 0, \
295 }),
296
297 #undef _ctf_sequence_encoded
298 #define _ctf_sequence_encoded(_type, _item, _src, _byte_order, \
299 _length_type, _src_length, _encoding, _nowrite, \
300 _elem_type_base) \
301 __LTTNG_COMPOUND_LITERAL(struct lttng_ust_event_field, { \
302 .struct_size = sizeof(struct lttng_ust_event_field), \
303 .name = "_" #_item "_length", \
304 .type = lttng_ust_type_integer_define(_length_type, BYTE_ORDER, 10), \
305 .nowrite = _nowrite, \
306 .nofilter = 1, \
307 }), \
308 __LTTNG_COMPOUND_LITERAL(struct lttng_ust_event_field, { \
309 .struct_size = sizeof(struct lttng_ust_event_field), \
310 .name = #_item, \
311 .type = (struct lttng_ust_type_common *) __LTTNG_COMPOUND_LITERAL(struct lttng_ust_type_sequence, { \
312 .parent = { \
313 .type = lttng_ust_type_sequence, \
314 }, \
315 .struct_size = sizeof(struct lttng_ust_type_sequence), \
316 .length_name = "_" #_item "_length", \
317 .elem_type = lttng_ust_type_integer_define(_type, _byte_order, _elem_type_base), \
318 .alignment = 0, \
319 .encoding = lttng_ust_string_encoding_##_encoding, \
320 }), \
321 .nowrite = _nowrite, \
322 .nofilter = 0, \
323 }),
324
325 #undef _ctf_string
326 #define _ctf_string(_item, _src, _nowrite) \
327 __LTTNG_COMPOUND_LITERAL(struct lttng_ust_event_field, { \
328 .struct_size = sizeof(struct lttng_ust_event_field), \
329 .name = #_item, \
330 .type = (struct lttng_ust_type_common *) __LTTNG_COMPOUND_LITERAL(struct lttng_ust_type_string, { \
331 .parent = { \
332 .type = lttng_ust_type_string, \
333 }, \
334 .struct_size = sizeof(struct lttng_ust_type_string), \
335 .encoding = lttng_ust_string_encoding_UTF8, \
336 }), \
337 .nowrite = _nowrite, \
338 .nofilter = 0, \
339 }),
340
341 #undef _ctf_enum
342 #define _ctf_enum(_provider, _name, _type, _item, _src, _nowrite) \
343 __LTTNG_COMPOUND_LITERAL(struct lttng_ust_event_field, { \
344 .struct_size = sizeof(struct lttng_ust_event_field), \
345 .name = #_item, \
346 .type = (struct lttng_ust_type_common *) __LTTNG_COMPOUND_LITERAL(struct lttng_ust_type_enum, { \
347 .parent = { \
348 .type = lttng_ust_type_enum, \
349 }, \
350 .struct_size = sizeof(struct lttng_ust_type_enum), \
351 .desc = &__enum_##_provider##_##_name, \
352 .container_type = lttng_ust_type_integer_define(_type, BYTE_ORDER, 10), \
353 }), \
354 .nowrite = _nowrite, \
355 .nofilter = 0, \
356 }),
357
358 #undef TP_FIELDS
359 #define TP_FIELDS(...) __VA_ARGS__ /* Only one used in this phase */
360
361 #undef _TRACEPOINT_EVENT_CLASS
362 #define _TRACEPOINT_EVENT_CLASS(_provider, _name, _args, _fields) \
363 static struct lttng_ust_event_field *__event_fields___##_provider##___##_name[] = { \
364 _fields \
365 ctf_integer(int, dummy, 0) /* Dummy, C99 forbids 0-len array. */ \
366 };
367
368 #undef TRACEPOINT_ENUM
369 #define TRACEPOINT_ENUM(_provider, _name, _values) \
370 static struct lttng_ust_enum_desc __enum_##_provider##_##_name = { \
371 .struct_size = sizeof(struct lttng_ust_enum_desc), \
372 .name = #_provider "_" #_name, \
373 .entries = __enum_values__##_provider##_##_name, \
374 .nr_entries = _TP_ARRAY_SIZE(__enum_values__##_provider##_##_name) - 1, \
375 };
376
377 #include TRACEPOINT_INCLUDE
378
379 /*
380 * Stage 2 of tracepoint event generation.
381 *
382 * Create probe callback prototypes.
383 */
384
385 /* Reset all macros within TRACEPOINT_EVENT */
386 #include <lttng/ust-tracepoint-event-reset.h>
387
388 #undef TP_ARGS
389 #define TP_ARGS(...) __VA_ARGS__
390
391 #undef _TRACEPOINT_EVENT_CLASS
392 #define _TRACEPOINT_EVENT_CLASS(_provider, _name, _args, _fields) \
393 static void __event_probe__##_provider##___##_name(_TP_ARGS_DATA_PROTO(_args));
394
395 #include TRACEPOINT_INCLUDE
396
397 /*
398 * Stage 3.0 of tracepoint event generation.
399 *
400 * Create static inline function that calculates event size.
401 */
402
403 /* Reset all macros within TRACEPOINT_EVENT */
404 #include <lttng/ust-tracepoint-event-reset.h>
405 #include <lttng/ust-tracepoint-event-write.h>
406
407 #undef _ctf_integer_ext
408 #define _ctf_integer_ext(_type, _item, _src, _byte_order, _base, _nowrite) \
409 __event_len += lttng_ust_lib_ring_buffer_align(__event_len, lttng_ust_rb_alignof(_type)); \
410 __event_len += sizeof(_type);
411
412 #undef _ctf_float
413 #define _ctf_float(_type, _item, _src, _nowrite) \
414 __event_len += lttng_ust_lib_ring_buffer_align(__event_len, lttng_ust_rb_alignof(_type)); \
415 __event_len += sizeof(_type);
416
417 #undef _ctf_array_encoded
418 #define _ctf_array_encoded(_type, _item, _src, _byte_order, _length, _encoding, \
419 _nowrite, _elem_type_base) \
420 __event_len += lttng_ust_lib_ring_buffer_align(__event_len, lttng_ust_rb_alignof(_type)); \
421 __event_len += sizeof(_type) * (_length);
422
423 #undef _ctf_sequence_encoded
424 #define _ctf_sequence_encoded(_type, _item, _src, _byte_order, _length_type, \
425 _src_length, _encoding, _nowrite, _elem_type_base) \
426 __event_len += lttng_ust_lib_ring_buffer_align(__event_len, lttng_ust_rb_alignof(_length_type)); \
427 __event_len += sizeof(_length_type); \
428 __event_len += lttng_ust_lib_ring_buffer_align(__event_len, lttng_ust_rb_alignof(_type)); \
429 __dynamic_len[__dynamic_len_idx] = (_src_length); \
430 __event_len += sizeof(_type) * __dynamic_len[__dynamic_len_idx]; \
431 __dynamic_len_idx++;
432
433 #undef _ctf_string
434 #define _ctf_string(_item, _src, _nowrite) \
435 __event_len += __dynamic_len[__dynamic_len_idx++] = \
436 strlen((_src) ? (_src) : __LTTNG_UST_NULL_STRING) + 1;
437
438 #undef _ctf_enum
439 #define _ctf_enum(_provider, _name, _type, _item, _src, _nowrite) \
440 _ctf_integer_ext(_type, _item, _src, BYTE_ORDER, 10, _nowrite)
441
442 #undef TP_ARGS
443 #define TP_ARGS(...) __VA_ARGS__
444
445 #undef TP_FIELDS
446 #define TP_FIELDS(...) __VA_ARGS__
447
448 #undef _TRACEPOINT_EVENT_CLASS
449 #define _TRACEPOINT_EVENT_CLASS(_provider, _name, _args, _fields) \
450 static inline lttng_ust_notrace \
451 size_t __event_get_size__##_provider##___##_name(size_t *__dynamic_len, _TP_ARGS_DATA_PROTO(_args)); \
452 static inline \
453 size_t __event_get_size__##_provider##___##_name(size_t *__dynamic_len, _TP_ARGS_DATA_PROTO(_args)) \
454 { \
455 size_t __event_len = 0; \
456 unsigned int __dynamic_len_idx = 0; \
457 \
458 if (0) \
459 (void) __dynamic_len_idx; /* don't warn if unused */ \
460 _fields \
461 return __event_len; \
462 }
463
464 #include TRACEPOINT_INCLUDE
465
466 /*
467 * Stage 3.1 of tracepoint event generation.
468 *
469 * Create static inline function that layout the filter stack data.
470 * We make both write and nowrite data available to the filter.
471 */
472
473 /* Reset all macros within TRACEPOINT_EVENT */
474 #include <lttng/ust-tracepoint-event-reset.h>
475 #include <lttng/ust-tracepoint-event-write.h>
476 #include <lttng/ust-tracepoint-event-nowrite.h>
477
478 #undef _ctf_integer_ext
479 #define _ctf_integer_ext(_type, _item, _src, _byte_order, _base, _nowrite) \
480 if (lttng_ust_is_signed_type(_type)) { \
481 int64_t __ctf_tmp_int64; \
482 switch (sizeof(_type)) { \
483 case 1: \
484 { \
485 union { _type t; int8_t v; } __tmp = { (_type) (_src) }; \
486 __ctf_tmp_int64 = (int64_t) __tmp.v; \
487 break; \
488 } \
489 case 2: \
490 { \
491 union { _type t; int16_t v; } __tmp = { (_type) (_src) }; \
492 if (_byte_order != BYTE_ORDER) \
493 __tmp.v = bswap_16(__tmp.v); \
494 __ctf_tmp_int64 = (int64_t) __tmp.v; \
495 break; \
496 } \
497 case 4: \
498 { \
499 union { _type t; int32_t v; } __tmp = { (_type) (_src) }; \
500 if (_byte_order != BYTE_ORDER) \
501 __tmp.v = bswap_32(__tmp.v); \
502 __ctf_tmp_int64 = (int64_t) __tmp.v; \
503 break; \
504 } \
505 case 8: \
506 { \
507 union { _type t; int64_t v; } __tmp = { (_type) (_src) }; \
508 if (_byte_order != BYTE_ORDER) \
509 __tmp.v = bswap_64(__tmp.v); \
510 __ctf_tmp_int64 = (int64_t) __tmp.v; \
511 break; \
512 } \
513 default: \
514 abort(); \
515 }; \
516 memcpy(__stack_data, &__ctf_tmp_int64, sizeof(int64_t)); \
517 } else { \
518 uint64_t __ctf_tmp_uint64; \
519 switch (sizeof(_type)) { \
520 case 1: \
521 { \
522 union { _type t; uint8_t v; } __tmp = { (_type) (_src) }; \
523 __ctf_tmp_uint64 = (uint64_t) __tmp.v; \
524 break; \
525 } \
526 case 2: \
527 { \
528 union { _type t; uint16_t v; } __tmp = { (_type) (_src) }; \
529 if (_byte_order != BYTE_ORDER) \
530 __tmp.v = bswap_16(__tmp.v); \
531 __ctf_tmp_uint64 = (uint64_t) __tmp.v; \
532 break; \
533 } \
534 case 4: \
535 { \
536 union { _type t; uint32_t v; } __tmp = { (_type) (_src) }; \
537 if (_byte_order != BYTE_ORDER) \
538 __tmp.v = bswap_32(__tmp.v); \
539 __ctf_tmp_uint64 = (uint64_t) __tmp.v; \
540 break; \
541 } \
542 case 8: \
543 { \
544 union { _type t; uint64_t v; } __tmp = { (_type) (_src) }; \
545 if (_byte_order != BYTE_ORDER) \
546 __tmp.v = bswap_64(__tmp.v); \
547 __ctf_tmp_uint64 = (uint64_t) __tmp.v; \
548 break; \
549 } \
550 default: \
551 abort(); \
552 }; \
553 memcpy(__stack_data, &__ctf_tmp_uint64, sizeof(uint64_t)); \
554 } \
555 __stack_data += sizeof(int64_t);
556
557 #undef _ctf_float
558 #define _ctf_float(_type, _item, _src, _nowrite) \
559 { \
560 double __ctf_tmp_double = (double) (_type) (_src); \
561 memcpy(__stack_data, &__ctf_tmp_double, sizeof(double)); \
562 __stack_data += sizeof(double); \
563 }
564
565 #undef _ctf_array_encoded
566 #define _ctf_array_encoded(_type, _item, _src, _byte_order, _length, \
567 _encoding, _nowrite, _elem_type_base) \
568 { \
569 unsigned long __ctf_tmp_ulong = (unsigned long) (_length); \
570 const void *__ctf_tmp_ptr = (_src); \
571 memcpy(__stack_data, &__ctf_tmp_ulong, sizeof(unsigned long)); \
572 __stack_data += sizeof(unsigned long); \
573 memcpy(__stack_data, &__ctf_tmp_ptr, sizeof(void *)); \
574 __stack_data += sizeof(void *); \
575 }
576
577 #undef _ctf_sequence_encoded
578 #define _ctf_sequence_encoded(_type, _item, _src, _byte_order, _length_type, \
579 _src_length, _encoding, _nowrite, _elem_type_base) \
580 { \
581 unsigned long __ctf_tmp_ulong = (unsigned long) (_src_length); \
582 const void *__ctf_tmp_ptr = (_src); \
583 memcpy(__stack_data, &__ctf_tmp_ulong, sizeof(unsigned long)); \
584 __stack_data += sizeof(unsigned long); \
585 memcpy(__stack_data, &__ctf_tmp_ptr, sizeof(void *)); \
586 __stack_data += sizeof(void *); \
587 }
588
589 #undef _ctf_string
590 #define _ctf_string(_item, _src, _nowrite) \
591 { \
592 const void *__ctf_tmp_ptr = \
593 ((_src) ? (_src) : __LTTNG_UST_NULL_STRING); \
594 memcpy(__stack_data, &__ctf_tmp_ptr, sizeof(void *)); \
595 __stack_data += sizeof(void *); \
596 }
597
598 #undef _ctf_enum
599 #define _ctf_enum(_provider, _name, _type, _item, _src, _nowrite) \
600 _ctf_integer_ext(_type, _item, _src, BYTE_ORDER, 10, _nowrite)
601
602 #undef TP_ARGS
603 #define TP_ARGS(...) __VA_ARGS__
604
605 #undef TP_FIELDS
606 #define TP_FIELDS(...) __VA_ARGS__
607
608 #undef _TRACEPOINT_EVENT_CLASS
609 #define _TRACEPOINT_EVENT_CLASS(_provider, _name, _args, _fields) \
610 static inline \
611 void __event_prepare_interpreter_stack__##_provider##___##_name(char *__stack_data,\
612 _TP_ARGS_DATA_PROTO(_args)) \
613 { \
614 _fields \
615 }
616
617 #include TRACEPOINT_INCLUDE
618
619 /*
620 * Stage 4 of tracepoint event generation.
621 *
622 * Create static inline function that calculates event payload alignment.
623 */
624
625 /* Reset all macros within TRACEPOINT_EVENT */
626 #include <lttng/ust-tracepoint-event-reset.h>
627 #include <lttng/ust-tracepoint-event-write.h>
628
629 #undef _ctf_integer_ext
630 #define _ctf_integer_ext(_type, _item, _src, _byte_order, _base, _nowrite) \
631 __event_align = _tp_max_t(size_t, __event_align, lttng_ust_rb_alignof(_type));
632
633 #undef _ctf_float
634 #define _ctf_float(_type, _item, _src, _nowrite) \
635 __event_align = _tp_max_t(size_t, __event_align, lttng_ust_rb_alignof(_type));
636
637 #undef _ctf_array_encoded
638 #define _ctf_array_encoded(_type, _item, _src, _byte_order, _length, \
639 _encoding, _nowrite, _elem_type_base) \
640 __event_align = _tp_max_t(size_t, __event_align, lttng_ust_rb_alignof(_type));
641
642 #undef _ctf_sequence_encoded
643 #define _ctf_sequence_encoded(_type, _item, _src, _byte_order, _length_type, \
644 _src_length, _encoding, _nowrite, _elem_type_base) \
645 __event_align = _tp_max_t(size_t, __event_align, lttng_ust_rb_alignof(_length_type)); \
646 __event_align = _tp_max_t(size_t, __event_align, lttng_ust_rb_alignof(_type));
647
648 #undef _ctf_string
649 #define _ctf_string(_item, _src, _nowrite)
650
651 #undef _ctf_enum
652 #define _ctf_enum(_provider, _name, _type, _item, _src, _nowrite) \
653 _ctf_integer_ext(_type, _item, _src, BYTE_ORDER, 10, _nowrite)
654
655 #undef TP_ARGS
656 #define TP_ARGS(...) __VA_ARGS__
657
658 #undef TP_FIELDS
659 #define TP_FIELDS(...) __VA_ARGS__
660
661 #undef _TRACEPOINT_EVENT_CLASS
662 #define _TRACEPOINT_EVENT_CLASS(_provider, _name, _args, _fields) \
663 static inline lttng_ust_notrace \
664 size_t __event_get_align__##_provider##___##_name(_TP_ARGS_PROTO(_args)); \
665 static inline \
666 size_t __event_get_align__##_provider##___##_name(_TP_ARGS_PROTO(_args)) \
667 { \
668 size_t __event_align = 1; \
669 _fields \
670 return __event_align; \
671 }
672
673 #include TRACEPOINT_INCLUDE
674
675
676 /*
677 * Stage 5 of tracepoint event generation.
678 *
679 * Create the probe function. This function calls event size calculation
680 * and writes event data into the buffer.
681 */
682
683 /* Reset all macros within TRACEPOINT_EVENT */
684 #include <lttng/ust-tracepoint-event-reset.h>
685 #include <lttng/ust-tracepoint-event-write.h>
686
687 #undef _ctf_integer_ext
688 #define _ctf_integer_ext(_type, _item, _src, _byte_order, _base, _nowrite) \
689 { \
690 _type __tmp = (_src); \
691 __chan->ops->event_write(&__ctx, &__tmp, sizeof(__tmp), lttng_ust_rb_alignof(__tmp));\
692 }
693
694 #undef _ctf_float
695 #define _ctf_float(_type, _item, _src, _nowrite) \
696 { \
697 _type __tmp = (_src); \
698 __chan->ops->event_write(&__ctx, &__tmp, sizeof(__tmp), lttng_ust_rb_alignof(__tmp));\
699 }
700
701 #undef _ctf_array_encoded
702 #define _ctf_array_encoded(_type, _item, _src, _byte_order, _length, \
703 _encoding, _nowrite, _elem_type_base) \
704 if (lttng_ust_string_encoding_##_encoding == lttng_ust_string_encoding_none) \
705 __chan->ops->event_write(&__ctx, _src, sizeof(_type) * (_length), lttng_ust_rb_alignof(_type)); \
706 else \
707 __chan->ops->event_pstrcpy_pad(&__ctx, (const char *) (_src), _length); \
708
709 #undef _ctf_sequence_encoded
710 #define _ctf_sequence_encoded(_type, _item, _src, _byte_order, _length_type, \
711 _src_length, _encoding, _nowrite, _elem_type_base) \
712 { \
713 _length_type __tmpl = __stackvar.__dynamic_len[__dynamic_len_idx]; \
714 __chan->ops->event_write(&__ctx, &__tmpl, sizeof(_length_type), lttng_ust_rb_alignof(_length_type));\
715 } \
716 if (lttng_ust_string_encoding_##_encoding == lttng_ust_string_encoding_none) \
717 __chan->ops->event_write(&__ctx, _src, \
718 sizeof(_type) * __get_dynamic_len(dest), lttng_ust_rb_alignof(_type)); \
719 else \
720 __chan->ops->event_pstrcpy_pad(&__ctx, (const char *) (_src), __get_dynamic_len(dest)); \
721
722 #undef _ctf_string
723 #define _ctf_string(_item, _src, _nowrite) \
724 { \
725 const char *__ctf_tmp_string = \
726 ((_src) ? (_src) : __LTTNG_UST_NULL_STRING); \
727 __chan->ops->event_strcpy(&__ctx, __ctf_tmp_string, \
728 __get_dynamic_len(dest)); \
729 }
730
731
732 #undef _ctf_enum
733 #define _ctf_enum(_provider, _name, _type, _item, _src, _nowrite) \
734 _ctf_integer_ext(_type, _item, _src, BYTE_ORDER, 10, _nowrite)
735
736 /* Beware: this get len actually consumes the len value */
737 #undef __get_dynamic_len
738 #define __get_dynamic_len(field) __stackvar.__dynamic_len[__dynamic_len_idx++]
739
740 #undef TP_ARGS
741 #define TP_ARGS(...) __VA_ARGS__
742
743 #undef TP_FIELDS
744 #define TP_FIELDS(...) __VA_ARGS__
745
746 /*
747 * For state dump, check that "session" argument (mandatory) matches the
748 * session this event belongs to. Ensures that we write state dump data only
749 * into the started session, not into all sessions.
750 */
751 #undef _TP_SESSION_CHECK
752 #ifdef TP_SESSION_CHECK
753 #define _TP_SESSION_CHECK(session, csession) (session == csession)
754 #else /* TP_SESSION_CHECK */
755 #define _TP_SESSION_CHECK(session, csession) 1
756 #endif /* TP_SESSION_CHECK */
757
758 /*
759 * Use of __builtin_return_address(0) sometimes seems to cause stack
760 * corruption on 32-bit PowerPC. Disable this feature on that
761 * architecture for now by always using the NULL value for the ip
762 * context.
763 */
764 #undef _TP_IP_PARAM
765 #ifdef TP_IP_PARAM
766 #define _TP_IP_PARAM(x) (x)
767 #else /* TP_IP_PARAM */
768
769 #if defined(LTTNG_UST_ARCH_PPC) && !defined(LTTNG_UST_ARCH_PPC64)
770 #define _TP_IP_PARAM(x) NULL
771 #else
772 #define _TP_IP_PARAM(x) __builtin_return_address(0)
773 #endif
774
775 #endif /* TP_IP_PARAM */
776
777 /*
778 * Using twice size for filter stack data to hold size and pointer for
779 * each field (worse case). For integers, max size required is 64-bit.
780 * Same for double-precision floats. Those fit within
781 * 2*sizeof(unsigned long) for all supported architectures.
782 * Perform UNION (||) of filter runtime list.
783 */
784 #undef _TRACEPOINT_EVENT_CLASS
785 #define _TRACEPOINT_EVENT_CLASS(_provider, _name, _args, _fields) \
786 static lttng_ust_notrace \
787 void __event_probe__##_provider##___##_name(_TP_ARGS_DATA_PROTO(_args)); \
788 static \
789 void __event_probe__##_provider##___##_name(_TP_ARGS_DATA_PROTO(_args)) \
790 { \
791 struct lttng_ust_event_common *__event = (struct lttng_ust_event_common *) __tp_data; \
792 size_t __dynamic_len_idx = 0; \
793 const size_t __num_fields = _TP_ARRAY_SIZE(__event_fields___##_provider##___##_name) - 1; \
794 union { \
795 size_t __dynamic_len[__num_fields]; \
796 char __interpreter_stack_data[2 * sizeof(unsigned long) * __num_fields]; \
797 } __stackvar; \
798 int __ret; \
799 bool __interpreter_stack_prepared = false; \
800 \
801 if (0) \
802 (void) __dynamic_len_idx; /* don't warn if unused */ \
803 switch (__event->type) { \
804 case LTTNG_UST_EVENT_TYPE_RECORDER: \
805 { \
806 struct lttng_ust_event_recorder *__event_recorder = (struct lttng_ust_event_recorder *) __event->child; \
807 struct lttng_ust_channel_buffer *__chan = __event_recorder->chan; \
808 struct lttng_ust_channel_common *__chan_common = __chan->parent; \
809 \
810 if (!_TP_SESSION_CHECK(session, __chan_common->session)) \
811 return; \
812 if (caa_unlikely(!CMM_ACCESS_ONCE(__chan_common->session->active))) \
813 return; \
814 if (caa_unlikely(!CMM_ACCESS_ONCE(__chan_common->enabled))) \
815 return; \
816 break; \
817 } \
818 case LTTNG_UST_EVENT_TYPE_NOTIFIER: \
819 break; \
820 } \
821 if (caa_unlikely(!CMM_ACCESS_ONCE(__event->enabled))) \
822 return; \
823 if (caa_unlikely(!TP_RCU_LINK_TEST())) \
824 return; \
825 if (caa_unlikely(CMM_ACCESS_ONCE(__event->eval_filter))) { \
826 __event_prepare_interpreter_stack__##_provider##___##_name(__stackvar.__interpreter_stack_data, \
827 _TP_ARGS_DATA_VAR(_args)); \
828 __interpreter_stack_prepared = true; \
829 if (caa_likely(__event->run_filter(__event, \
830 __stackvar.__interpreter_stack_data, NULL) != LTTNG_UST_EVENT_FILTER_ACCEPT)) \
831 return; \
832 } \
833 switch (__event->type) { \
834 case LTTNG_UST_EVENT_TYPE_RECORDER: \
835 { \
836 size_t __event_len, __event_align; \
837 struct lttng_ust_event_recorder *__event_recorder = (struct lttng_ust_event_recorder *) __event->child; \
838 struct lttng_ust_channel_buffer *__chan = __event_recorder->chan; \
839 struct lttng_ust_lib_ring_buffer_ctx __ctx; \
840 \
841 __event_len = __event_get_size__##_provider##___##_name(__stackvar.__dynamic_len, \
842 _TP_ARGS_DATA_VAR(_args)); \
843 __event_align = __event_get_align__##_provider##___##_name(_TP_ARGS_VAR(_args)); \
844 lttng_ust_lib_ring_buffer_ctx_init(&__ctx, __event_recorder, __event_len, __event_align, \
845 _TP_IP_PARAM(TP_IP_PARAM)); \
846 __ret = __chan->ops->event_reserve(&__ctx); \
847 if (__ret < 0) \
848 return; \
849 _fields \
850 __chan->ops->event_commit(&__ctx); \
851 break; \
852 } \
853 case LTTNG_UST_EVENT_TYPE_NOTIFIER: \
854 { \
855 struct lttng_ust_event_notifier *__event_notifier = (struct lttng_ust_event_notifier *) __event->child; \
856 struct lttng_ust_notification_ctx __notif_ctx; \
857 \
858 __notif_ctx.struct_size = sizeof(struct lttng_ust_notification_ctx); \
859 __notif_ctx.eval_capture = CMM_ACCESS_ONCE(__event_notifier->eval_capture); \
860 \
861 if (caa_unlikely(!__interpreter_stack_prepared && __notif_ctx.eval_capture)) \
862 __event_prepare_interpreter_stack__##_provider##___##_name(__stackvar.__interpreter_stack_data, \
863 _TP_ARGS_DATA_VAR(_args)); \
864 \
865 __event_notifier->notification_send(__event_notifier, \
866 __stackvar.__interpreter_stack_data, \
867 &__notif_ctx); \
868 break; \
869 } \
870 } \
871 }
872
873 #include TRACEPOINT_INCLUDE
874
875 #undef __get_dynamic_len
876
877 /*
878 * Stage 5.1 of tracepoint event generation.
879 *
880 * Create probe signature
881 */
882
883 /* Reset all macros within TRACEPOINT_EVENT */
884 #include <lttng/ust-tracepoint-event-reset.h>
885
886 #undef TP_ARGS
887 #define TP_ARGS(...) __VA_ARGS__
888
889 #define _TP_EXTRACT_STRING2(...) #__VA_ARGS__
890
891 #undef _TRACEPOINT_EVENT_CLASS
892 #define _TRACEPOINT_EVENT_CLASS(_provider, _name, _args, _fields) \
893 static const char __tp_event_signature___##_provider##___##_name[] = \
894 _TP_EXTRACT_STRING2(_args);
895
896 #include TRACEPOINT_INCLUDE
897
898 #undef _TP_EXTRACT_STRING2
899
900 /*
901 * Stage 6 of tracepoint event generation.
902 *
903 * Tracepoint loglevel mapping definition generation. We generate a
904 * symbol for each mapping for a provider/event to ensure at most a 1 to
905 * 1 mapping between events and loglevels. If the symbol is repeated,
906 * the compiler will complain.
907 */
908
909 /* Reset all macros within TRACEPOINT_EVENT */
910 #include <lttng/ust-tracepoint-event-reset.h>
911
912 /*
913 * Declare _loglevel___##__provider##___##__name as non-static, with
914 * hidden visibility for c++ handling of weakref. We do a weakref to the
915 * symbol in a later stage, which requires that the symbol is not
916 * mangled.
917 */
918 #ifdef __cplusplus
919 #define LTTNG_TP_EXTERN_C extern "C"
920 #else
921 #define LTTNG_TP_EXTERN_C
922 #endif
923
924 #undef TRACEPOINT_LOGLEVEL
925 #define TRACEPOINT_LOGLEVEL(__provider, __name, __loglevel) \
926 static const int _loglevel_value___##__provider##___##__name = __loglevel; \
927 LTTNG_TP_EXTERN_C const int *_loglevel___##__provider##___##__name \
928 __attribute__((visibility("hidden"))) = \
929 &_loglevel_value___##__provider##___##__name;
930
931 #include TRACEPOINT_INCLUDE
932
933 #undef LTTNG_TP_EXTERN_C
934
935 /*
936 * Stage 6.1 of tracepoint event generation.
937 *
938 * Tracepoint UML URI info.
939 */
940
941 /* Reset all macros within TRACEPOINT_EVENT */
942 #include <lttng/ust-tracepoint-event-reset.h>
943
944 /*
945 * Declare _model_emf_uri___##__provider##___##__name as non-static,
946 * with hidden visibility for c++ handling of weakref. We do a weakref
947 * to the symbol in a later stage, which requires that the symbol is not
948 * mangled.
949 */
950 #ifdef __cplusplus
951 #define LTTNG_TP_EXTERN_C extern "C"
952 #else
953 #define LTTNG_TP_EXTERN_C
954 #endif
955
956 #undef TRACEPOINT_MODEL_EMF_URI
957 #define TRACEPOINT_MODEL_EMF_URI(__provider, __name, __uri) \
958 LTTNG_TP_EXTERN_C const char *_model_emf_uri___##__provider##___##__name \
959 __attribute__((visibility("hidden"))) = __uri; \
960
961 #include TRACEPOINT_INCLUDE
962
963 #undef LTTNG_TP_EXTERN_C
964
965 /*
966 * Stage 7.0 of tracepoint event generation.
967 *
968 * Declare toplevel descriptor for the whole probe.
969 * Unlike C, C++ does not allow tentative definitions. Therefore, we
970 * need to explicitly declare the variable with "extern", using hidden
971 * visibility to keep this symbol from being exported to the global
972 * symbol table.
973 */
974
975 extern struct lttng_ust_probe_desc _TP_COMBINE_TOKENS(__probe_desc___, TRACEPOINT_PROVIDER)
976 __attribute__((visibility("hidden")));
977
978 /*
979 * Stage 7.1 of tracepoint event generation.
980 *
981 * Create events description structures. We use a weakref because
982 * loglevels are optional. If not declared, the event will point to the
983 * a loglevel that contains NULL.
984 */
985
986 /* Reset all macros within TRACEPOINT_EVENT */
987 #include <lttng/ust-tracepoint-event-reset.h>
988
989 #undef _TRACEPOINT_EVENT_INSTANCE
990 #define _TRACEPOINT_EVENT_INSTANCE(_provider, _template, _name, _args) \
991 static const int * \
992 __ref_loglevel___##_provider##___##_name \
993 __attribute__((weakref ("_loglevel___" #_provider "___" #_name))); \
994 static const char * \
995 __ref_model_emf_uri___##_provider##___##_name \
996 __attribute__((weakref ("_model_emf_uri___" #_provider "___" #_name)));\
997 static struct lttng_ust_event_desc __event_desc___##_provider##_##_name = { \
998 .struct_size = sizeof(struct lttng_ust_event_desc), \
999 .event_name = #_name, \
1000 .probe_desc = &__probe_desc___##_provider, \
1001 .probe_callback = (void (*)(void)) &__event_probe__##_provider##___##_template, \
1002 .ctx = NULL, \
1003 .fields = __event_fields___##_provider##___##_template, \
1004 .nr_fields = _TP_ARRAY_SIZE(__event_fields___##_provider##___##_template) - 1, \
1005 .loglevel = &__ref_loglevel___##_provider##___##_name, \
1006 .signature = __tp_event_signature___##_provider##___##_template, \
1007 .model_emf_uri = &__ref_model_emf_uri___##_provider##___##_name, \
1008 };
1009
1010 #include TRACEPOINT_INCLUDE
1011
1012 /*
1013 * Stage 7.2 of tracepoint event generation.
1014 *
1015 * Create array of events.
1016 */
1017
1018 /* Reset all macros within TRACEPOINT_EVENT */
1019 #include <lttng/ust-tracepoint-event-reset.h>
1020
1021 #undef _TRACEPOINT_EVENT_INSTANCE
1022 #define _TRACEPOINT_EVENT_INSTANCE(_provider, _template, _name, _args) \
1023 &__event_desc___##_provider##_##_name,
1024
1025 static struct lttng_ust_event_desc *_TP_COMBINE_TOKENS(__event_desc___, TRACEPOINT_PROVIDER)[] = {
1026 #include TRACEPOINT_INCLUDE
1027 NULL, /* Dummy, C99 forbids 0-len array. */
1028 };
1029
1030
1031 /*
1032 * Stage 8 of tracepoint event generation.
1033 *
1034 * Create a toplevel descriptor for the whole probe.
1035 */
1036
1037 struct lttng_ust_probe_desc _TP_COMBINE_TOKENS(__probe_desc___, TRACEPOINT_PROVIDER) = {
1038 .struct_size = sizeof(struct lttng_ust_probe_desc),
1039 .provider_name = __tp_stringify(TRACEPOINT_PROVIDER),
1040 .event_desc = _TP_COMBINE_TOKENS(__event_desc___, TRACEPOINT_PROVIDER),
1041 .nr_events = _TP_ARRAY_SIZE(_TP_COMBINE_TOKENS(__event_desc___, TRACEPOINT_PROVIDER)) - 1,
1042 .head = { NULL, NULL },
1043 .lazy_init_head = { NULL, NULL },
1044 .lazy = 0,
1045 .major = LTTNG_UST_PROVIDER_MAJOR,
1046 .minor = LTTNG_UST_PROVIDER_MINOR,
1047 };
1048
1049 static int _TP_COMBINE_TOKENS(__probe_register_refcount___, TRACEPOINT_PROVIDER);
1050
1051 /*
1052 * Stage 9 of tracepoint event generation.
1053 *
1054 * Register/unregister probes at module load/unload.
1055 *
1056 * Generate the constructor as an externally visible symbol for use when
1057 * linking the probe statically.
1058 *
1059 * Register refcount is protected by libc dynamic loader mutex.
1060 */
1061
1062 /* Reset all macros within TRACEPOINT_EVENT */
1063 #include <lttng/ust-tracepoint-event-reset.h>
1064 static void lttng_ust_notrace __attribute__((constructor))
1065 _TP_COMBINE_TOKENS(__lttng_events_init__, TRACEPOINT_PROVIDER)(void);
1066 static void
1067 _TP_COMBINE_TOKENS(__lttng_events_init__, TRACEPOINT_PROVIDER)(void)
1068 {
1069 int ret;
1070
1071 if (_TP_COMBINE_TOKENS(__probe_register_refcount___,
1072 TRACEPOINT_PROVIDER)++) {
1073 return;
1074 }
1075 /*
1076 * __tracepoint_provider_check_ ## TRACEPOINT_PROVIDER() is a
1077 * static inline function that ensures every probe PROVIDER
1078 * argument match the provider within which they appear. It
1079 * calls empty static inline functions, and therefore has no
1080 * runtime effect. However, if it detects an error, a linker
1081 * error will appear.
1082 */
1083 _TP_COMBINE_TOKENS(__tracepoint_provider_check_, TRACEPOINT_PROVIDER)();
1084 ret = lttng_ust_probe_register(&_TP_COMBINE_TOKENS(__probe_desc___, TRACEPOINT_PROVIDER));
1085 if (ret) {
1086 fprintf(stderr, "LTTng-UST: Error (%d) while registering tracepoint probe.\n", ret);
1087 abort();
1088 }
1089 }
1090
1091 static void lttng_ust_notrace __attribute__((destructor))
1092 _TP_COMBINE_TOKENS(__lttng_events_exit__, TRACEPOINT_PROVIDER)(void);
1093 static void
1094 _TP_COMBINE_TOKENS(__lttng_events_exit__, TRACEPOINT_PROVIDER)(void)
1095 {
1096 if (--_TP_COMBINE_TOKENS(__probe_register_refcount___,
1097 TRACEPOINT_PROVIDER)) {
1098 return;
1099 }
1100 lttng_ust_probe_unregister(&_TP_COMBINE_TOKENS(__probe_desc___, TRACEPOINT_PROVIDER));
1101 }
1102
1103 int _TP_COMBINE_TOKENS(__tracepoint_provider_, TRACEPOINT_PROVIDER)
1104 __attribute__((visibility("default")));
This page took 0.052129 seconds and 5 git commands to generate.