aboutsummaryrefslogtreecommitdiffstats
path: root/include/trace/ftrace.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/trace/ftrace.h')
-rw-r--r--include/trace/ftrace.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/include/trace/ftrace.h b/include/trace/ftrace.h
index 3873d6e4697f..54928faf2119 100644
--- a/include/trace/ftrace.h
+++ b/include/trace/ftrace.h
@@ -302,15 +302,11 @@ static struct trace_event_functions ftrace_event_type_funcs_##call = { \
302#undef __array 302#undef __array
303#define __array(type, item, len) \ 303#define __array(type, item, len) \
304 do { \ 304 do { \
305 mutex_lock(&event_storage_mutex); \
306 BUILD_BUG_ON(len > MAX_FILTER_STR_VAL); \ 305 BUILD_BUG_ON(len > MAX_FILTER_STR_VAL); \
307 snprintf(event_storage, sizeof(event_storage), \ 306 ret = ftrace_event_define_field(event_call, #type, len, \
308 "%s[%d]", #type, len); \ 307 #item, offsetof(typeof(field), item), \
309 ret = trace_define_field(event_call, event_storage, #item, \ 308 sizeof(field.item), \
310 offsetof(typeof(field), item), \ 309 is_signed_type(type), FILTER_OTHER); \
311 sizeof(field.item), \
312 is_signed_type(type), FILTER_OTHER); \
313 mutex_unlock(&event_storage_mutex); \
314 if (ret) \ 310 if (ret) \
315 return ret; \ 311 return ret; \
316 } while (0); 312 } while (0);