Go to the documentation of this file. 1 #ifndef __TRACE_EVENTS_H
2 #define __TRACE_EVENTS_H
14 unsigned long sym_flags);
18 unsigned long ip,
unsigned long sym_flags);
36 #define MAX_MEMHEX_BYTES 8
37 #define HEX_CHARS (MAX_MEMHEX_BYTES*2 + 1)
39 #define SEQ_PUT_FIELD_RET(s, x) \
41 if (!trace_seq_putmem(s, &(x), sizeof(x))) \
42 return TRACE_TYPE_PARTIAL_LINE; \
45 #define SEQ_PUT_HEX_FIELD_RET(s, x) \
47 BUILD_BUG_ON(sizeof(x) > MAX_MEMHEX_BYTES); \
48 if (!trace_seq_putmem_hex(s, &(x), sizeof(x))) \
49 return TRACE_TYPE_PARTIAL_LINE; \