Skip to content

Commit ca5ca22

Browse files
committed
Merge tag 'trace-v6.2-rc7-2' of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace
Pull tracing fixlet from Steven Rostedt: "Make trace_define_field_ext() static. Just after the fix to TASK_COMM_LEN not converted to its value in trace_events was pulled, the kernel test robot reported that the helper function trace_define_field_ext() added to that change was only used in the file it was defined in but was not declared static. Make it a local function" * tag 'trace-v6.2-rc7-2' of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace: tracing: Make trace_define_field_ext() static
2 parents e1c0451 + 70b5339 commit ca5ca22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/trace/trace_events.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ int trace_define_field(struct trace_event_call *call, const char *type,
155155
}
156156
EXPORT_SYMBOL_GPL(trace_define_field);
157157

158-
int trace_define_field_ext(struct trace_event_call *call, const char *type,
158+
static int trace_define_field_ext(struct trace_event_call *call, const char *type,
159159
const char *name, int offset, int size, int is_signed,
160160
int filter_type, int len)
161161
{

0 commit comments

Comments
 (0)