trace_output.h 2.2 KB

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