trace_output.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #ifndef __TRACE_EVENTS_H
  2. #define __TRACE_EVENTS_H
  3. #include "trace.h"
  4. typedef int (*trace_print_func)(struct trace_seq *s, struct trace_entry *entry,
  5. int flags);
  6. struct trace_event {
  7. struct hlist_node node;
  8. int type;
  9. trace_print_func trace;
  10. trace_print_func latency_trace;
  11. trace_print_func raw;
  12. trace_print_func hex;
  13. trace_print_func binary;
  14. };
  15. extern int trace_seq_printf(struct trace_seq *s, const char *fmt, ...);
  16. extern int
  17. seq_print_ip_sym(struct trace_seq *s, unsigned long ip,
  18. unsigned long sym_flags);
  19. extern ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf,
  20. size_t cnt);
  21. int trace_seq_puts(struct trace_seq *s, const char *str);
  22. int trace_seq_putc(struct trace_seq *s, unsigned char c);
  23. int trace_seq_putmem(struct trace_seq *s, void *mem, size_t len);
  24. int trace_seq_putmem_hex(struct trace_seq *s, void *mem, size_t len);
  25. int trace_seq_path(struct trace_seq *s, struct path *path);
  26. int seq_print_userip_objs(const struct userstack_entry *entry,
  27. struct trace_seq *s, unsigned long sym_flags);
  28. int seq_print_user_ip(struct trace_seq *s, struct mm_struct *mm,
  29. unsigned long ip, unsigned long sym_flags);
  30. struct trace_event *ftrace_find_event(int type);
  31. int register_ftrace_event(struct trace_event *event);
  32. int unregister_ftrace_event(struct trace_event *event);
  33. int
  34. trace_nop_print(struct trace_seq *s, struct trace_entry *entry, int flags);
  35. #define MAX_MEMHEX_BYTES 8
  36. #define HEX_CHARS (MAX_MEMHEX_BYTES*2 + 1)
  37. #define SEQ_PUT_FIELD_RET(s, x) \
  38. do { \
  39. if (!trace_seq_putmem(s, &(x), sizeof(x))) \
  40. return TRACE_TYPE_PARTIAL_LINE; \
  41. } while (0)
  42. #define SEQ_PUT_HEX_FIELD_RET(s, x) \
  43. do { \
  44. BUILD_BUG_ON(sizeof(x) > MAX_MEMHEX_BYTES); \
  45. if (!trace_seq_putmem_hex(s, &(x), sizeof(x))) \
  46. return TRACE_TYPE_PARTIAL_LINE; \
  47. } while (0)
  48. #endif