summaryrefslogtreecommitdiff
path: root/backport-include/trace/ftrace.h
diff options
context:
space:
mode:
Diffstat (limited to 'backport-include/trace/ftrace.h')
-rw-r--r--backport-include/trace/ftrace.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/backport-include/trace/ftrace.h b/backport-include/trace/ftrace.h
new file mode 100644
index 0000000..2daedd5
--- /dev/null
+++ b/backport-include/trace/ftrace.h
@@ -0,0 +1,13 @@
+#undef __print_array
+#define __print_array(array, count, el_size) \
+ ({ \
+ BUILD_BUG_ON(el_size != 1 && el_size != 2 && \
+ el_size != 4 && el_size != 8); \
+ ftrace_print_array_seq(p, array, count, el_size); \
+ })
+
+#undef __get_dynamic_array_len
+#define __get_dynamic_array_len(field) \
+ ((__entry->__data_loc_##field >> 16) & 0xffff)
+
+#include_next <trace/ftrace.h>