trace_seq.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. #ifndef _LINUX_TRACE_SEQ_H
  2. #define _LINUX_TRACE_SEQ_H
  3. #include <linux/fs.h>
  4. #include <asm/page.h>
  5. /*
  6. * Trace sequences are used to allow a function to call several other functions
  7. * to create a string of data to use (up to a max of PAGE_SIZE).
  8. */
  9. struct trace_seq {
  10. unsigned char buffer[PAGE_SIZE];
  11. unsigned int len;
  12. unsigned int readpos;
  13. };
  14. static inline void
  15. trace_seq_init(struct trace_seq *s)
  16. {
  17. s->len = 0;
  18. s->readpos = 0;
  19. }
  20. /*
  21. * Currently only defined when tracing is enabled.
  22. */
  23. #ifdef CONFIG_TRACING
  24. extern int trace_seq_printf(struct trace_seq *s, const char *fmt, ...)
  25. __attribute__ ((format (printf, 2, 3)));
  26. extern int trace_seq_vprintf(struct trace_seq *s, const char *fmt, va_list args)
  27. __attribute__ ((format (printf, 2, 0)));
  28. extern int
  29. trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary);
  30. extern void trace_print_seq(struct seq_file *m, struct trace_seq *s);
  31. extern ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf,
  32. size_t cnt);
  33. extern int trace_seq_puts(struct trace_seq *s, const char *str);
  34. extern int trace_seq_putc(struct trace_seq *s, unsigned char c);
  35. extern int trace_seq_putmem(struct trace_seq *s, const void *mem, size_t len);
  36. extern int trace_seq_putmem_hex(struct trace_seq *s, const void *mem,
  37. size_t len);
  38. extern void *trace_seq_reserve(struct trace_seq *s, size_t len);
  39. extern int trace_seq_path(struct trace_seq *s, struct path *path);
  40. #else /* CONFIG_TRACING */
  41. static inline int trace_seq_printf(struct trace_seq *s, const char *fmt, ...)
  42. {
  43. return 0;
  44. }
  45. static inline int
  46. trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary)
  47. {
  48. return 0;
  49. }
  50. static inline void trace_print_seq(struct seq_file *m, struct trace_seq *s)
  51. {
  52. }
  53. static inline ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf,
  54. size_t cnt)
  55. {
  56. return 0;
  57. }
  58. static inline int trace_seq_puts(struct trace_seq *s, const char *str)
  59. {
  60. return 0;
  61. }
  62. static inline int trace_seq_putc(struct trace_seq *s, unsigned char c)
  63. {
  64. return 0;
  65. }
  66. static inline int
  67. trace_seq_putmem(struct trace_seq *s, const void *mem, size_t len)
  68. {
  69. return 0;
  70. }
  71. static inline int trace_seq_putmem_hex(struct trace_seq *s, const void *mem,
  72. size_t len)
  73. {
  74. return 0;
  75. }
  76. static inline void *trace_seq_reserve(struct trace_seq *s, size_t len)
  77. {
  78. return NULL;
  79. }
  80. static inline int trace_seq_path(struct trace_seq *s, struct path *path)
  81. {
  82. return 0;
  83. }
  84. #endif /* CONFIG_TRACING */
  85. #endif /* _LINUX_TRACE_SEQ_H */