summary refs log tree commit diff
path: root/kernel/trace/trace_entries.h
diff options
context:
space:
mode:
authorJosef Bacik <jbacik@fb.com>2014-09-24 16:14:12 -0400
committerSteven Rostedt (VMware) <rostedt@goodmis.org>2020-01-24 18:09:40 -0500
commitcbc3b92ce037f5e7536f6db157d185cd8b8f615c (patch)
treeabec17b3175f04e667b6f5ea10b5cb11ee4a16d0 /kernel/trace/trace_entries.h
parentafccc00f75bbbee4e4ae833a96c2d29a7259c693 (diff)
downloadlinux-cbc3b92ce037f5e7536f6db157d185cd8b8f615c.tar.gz
tracing: Set kernel_stack's caller size properly
I noticed when trying to use the trace-cmd python interface that reading the raw
buffer wasn't working for kernel_stack events.  This is because it uses a
stubbed version of __dynamic_array that doesn't do the __data_loc trick and
encode the length of the array into the field.  Instead it just shows up as a
size of 0.  So change this to __array and set the len to FTRACE_STACK_ENTRIES
since this is what we actually do in practice and matches how user_stack_trace
works.

Link: http://lkml.kernel.org/r/1411589652-1318-1-git-send-email-jbacik@fb.com

Signed-off-by: Josef Bacik <jbacik@fb.com>
[ Pulled from the archeological digging of my INBOX ]
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Diffstat (limited to 'kernel/trace/trace_entries.h')
-rw-r--r--kernel/trace/trace_entries.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/trace/trace_entries.h b/kernel/trace/trace_entries.h
index fc8e97328e54..78c146efb862 100644
--- a/kernel/trace/trace_entries.h
+++ b/kernel/trace/trace_entries.h
@@ -174,7 +174,7 @@ FTRACE_ENTRY(kernel_stack, stack_entry,
 
 	F_STRUCT(
 		__field(	int,		size	)
-		__dynamic_array(unsigned long,	caller	)
+		__array(	unsigned long,	caller,	FTRACE_STACK_ENTRIES	)
 	),
 
 	F_printk("\t=> %ps\n\t=> %ps\n\t=> %ps\n"