mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
Tracing fixes for 5.15:
- Fix defined but not use warning/error for osnoise function - Fix memory leak in event probe - Fix memblock leak in bootconfig - Fix the API of event probes to be like kprobes - Added test to check removal of event probe API - Fix recordmcount.pl for nds32 failed build -----BEGIN PGP SIGNATURE----- iIoEABYIADIWIQRRSw7ePDh/lE+zeZMp5XQQmuv6qgUCYWpB6BQccm9zdGVkdEBn b29kbWlzLm9yZwAKCRAp5XQQmuv6qnu/AQD1eYekS43uCDyzzpvjsz0tZ6tzVH8z ainpgtcAd11q4AD8CHLvhBsEyo99Yna2Mvir6nCkafm2Y2IVGvVbnDofnAA= =yvDo -----END PGP SIGNATURE----- Merge tag 'trace-v5.15-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace Tracing fixes for 5.15: - Fix defined but not use warning/error for osnoise function - Fix memory leak in event probe - Fix memblock leak in bootconfig - Fix the API of event probes to be like kprobes - Added test to check removal of event probe API - Fix recordmcount.pl for nds32 failed build * tag 'trace-v5.15-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace: nds32/ftrace: Fix Error: invalid operands (*UND* and *UND* sections) for `^' selftests/ftrace: Update test for more eprobe removal process tracing: Fix event probe removal from dynamic events tracing: Fix missing * in comment block bootconfig: init: Fix memblock leak in xbc_make_cmdline() tracing: Fix memory leak in eprobe_register() tracing: Fix missing osnoise tracer on max_latency
This commit is contained in:
commit
368a978cc5
@ -382,6 +382,7 @@ static char * __init xbc_make_cmdline(const char *key)
|
||||
ret = xbc_snprint_cmdline(new_cmdline, len + 1, root);
|
||||
if (ret < 0 || ret > len) {
|
||||
pr_err("Failed to print extra kernel cmdline.\n");
|
||||
memblock_free_ptr(new_cmdline, len + 1);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
@ -1744,16 +1744,15 @@ void latency_fsnotify(struct trace_array *tr)
|
||||
irq_work_queue(&tr->fsnotify_irqwork);
|
||||
}
|
||||
|
||||
/*
|
||||
* (defined(CONFIG_TRACER_MAX_TRACE) || defined(CONFIG_HWLAT_TRACER)) && \
|
||||
* defined(CONFIG_FSNOTIFY)
|
||||
*/
|
||||
#else
|
||||
#elif defined(CONFIG_TRACER_MAX_TRACE) || defined(CONFIG_HWLAT_TRACER) \
|
||||
|| defined(CONFIG_OSNOISE_TRACER)
|
||||
|
||||
#define trace_create_maxlat_file(tr, d_tracer) \
|
||||
trace_create_file("tracing_max_latency", 0644, d_tracer, \
|
||||
&tr->max_latency, &tracing_max_lat_fops)
|
||||
|
||||
#else
|
||||
#define trace_create_maxlat_file(tr, d_tracer) do { } while (0)
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_TRACER_MAX_TRACE
|
||||
@ -9473,9 +9472,7 @@ init_tracer_tracefs(struct trace_array *tr, struct dentry *d_tracer)
|
||||
|
||||
create_trace_options_dir(tr);
|
||||
|
||||
#if defined(CONFIG_TRACER_MAX_TRACE) || defined(CONFIG_HWLAT_TRACER)
|
||||
trace_create_maxlat_file(tr, d_tracer);
|
||||
#endif
|
||||
|
||||
if (ftrace_create_function_files(tr, d_tracer))
|
||||
MEM_FAIL(1, "Could not allocate function filter files");
|
||||
|
@ -119,10 +119,58 @@ static bool eprobe_dyn_event_match(const char *system, const char *event,
|
||||
int argc, const char **argv, struct dyn_event *ev)
|
||||
{
|
||||
struct trace_eprobe *ep = to_trace_eprobe(ev);
|
||||
const char *slash;
|
||||
|
||||
return strcmp(trace_probe_name(&ep->tp), event) == 0 &&
|
||||
(!system || strcmp(trace_probe_group_name(&ep->tp), system) == 0) &&
|
||||
trace_probe_match_command_args(&ep->tp, argc, argv);
|
||||
/*
|
||||
* We match the following:
|
||||
* event only - match all eprobes with event name
|
||||
* system and event only - match all system/event probes
|
||||
*
|
||||
* The below has the above satisfied with more arguments:
|
||||
*
|
||||
* attached system/event - If the arg has the system and event
|
||||
* the probe is attached to, match
|
||||
* probes with the attachment.
|
||||
*
|
||||
* If any more args are given, then it requires a full match.
|
||||
*/
|
||||
|
||||
/*
|
||||
* If system exists, but this probe is not part of that system
|
||||
* do not match.
|
||||
*/
|
||||
if (system && strcmp(trace_probe_group_name(&ep->tp), system) != 0)
|
||||
return false;
|
||||
|
||||
/* Must match the event name */
|
||||
if (strcmp(trace_probe_name(&ep->tp), event) != 0)
|
||||
return false;
|
||||
|
||||
/* No arguments match all */
|
||||
if (argc < 1)
|
||||
return true;
|
||||
|
||||
/* First argument is the system/event the probe is attached to */
|
||||
|
||||
slash = strchr(argv[0], '/');
|
||||
if (!slash)
|
||||
slash = strchr(argv[0], '.');
|
||||
if (!slash)
|
||||
return false;
|
||||
|
||||
if (strncmp(ep->event_system, argv[0], slash - argv[0]))
|
||||
return false;
|
||||
if (strcmp(ep->event_name, slash + 1))
|
||||
return false;
|
||||
|
||||
argc--;
|
||||
argv++;
|
||||
|
||||
/* If there are no other args, then match */
|
||||
if (argc < 1)
|
||||
return true;
|
||||
|
||||
return trace_probe_match_command_args(&ep->tp, argc, argv);
|
||||
}
|
||||
|
||||
static struct dyn_event_operations eprobe_dyn_event_ops = {
|
||||
@ -632,6 +680,13 @@ static int disable_eprobe(struct trace_eprobe *ep,
|
||||
|
||||
trace_event_trigger_enable_disable(file, 0);
|
||||
update_cond_flag(file);
|
||||
|
||||
/* Make sure nothing is using the edata or trigger */
|
||||
tracepoint_synchronize_unregister();
|
||||
|
||||
kfree(edata);
|
||||
kfree(trigger);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -2506,7 +2506,7 @@ find_synthetic_field_var(struct hist_trigger_data *target_hist_data,
|
||||
* events. However, for convenience, users are allowed to directly
|
||||
* specify an event field in an action, which will be automatically
|
||||
* converted into a variable on their behalf.
|
||||
|
||||
*
|
||||
* If a user specifies a field on an event that isn't the event the
|
||||
* histogram currently being defined (the target event histogram), the
|
||||
* only way that can be accomplished is if a new hist trigger is
|
||||
|
@ -189,7 +189,7 @@ if ($arch =~ /(x86(_64)?)|(i386)/) {
|
||||
$local_regex = "^[0-9a-fA-F]+\\s+t\\s+(\\S+)";
|
||||
$weak_regex = "^[0-9a-fA-F]+\\s+([wW])\\s+(\\S+)";
|
||||
$section_regex = "Disassembly of section\\s+(\\S+):";
|
||||
$function_regex = "^([0-9a-fA-F]+)\\s+<(.*?)>:";
|
||||
$function_regex = "^([0-9a-fA-F]+)\\s+<([^^]*?)>:";
|
||||
$mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\s(mcount|__fentry__)\$";
|
||||
$section_type = '@progbits';
|
||||
$mcount_adjust = 0;
|
||||
|
@ -11,8 +11,8 @@ SYSTEM="syscalls"
|
||||
EVENT="sys_enter_openat"
|
||||
FIELD="filename"
|
||||
EPROBE="eprobe_open"
|
||||
|
||||
echo "e:$EPROBE $SYSTEM/$EVENT file=+0(\$filename):ustring" >> dynamic_events
|
||||
OPTIONS="file=+0(\$filename):ustring"
|
||||
echo "e:$EPROBE $SYSTEM/$EVENT $OPTIONS" >> dynamic_events
|
||||
|
||||
grep -q "$EPROBE" dynamic_events
|
||||
test -d events/eprobes/$EPROBE
|
||||
@ -37,4 +37,54 @@ echo "-:$EPROBE" >> dynamic_events
|
||||
! grep -q "$EPROBE" dynamic_events
|
||||
! test -d events/eprobes/$EPROBE
|
||||
|
||||
# test various ways to remove the probe (already tested with just event name)
|
||||
|
||||
# With group name
|
||||
echo "e:$EPROBE $SYSTEM/$EVENT $OPTIONS" >> dynamic_events
|
||||
grep -q "$EPROBE" dynamic_events
|
||||
test -d events/eprobes/$EPROBE
|
||||
echo "-:eprobes/$EPROBE" >> dynamic_events
|
||||
! grep -q "$EPROBE" dynamic_events
|
||||
! test -d events/eprobes/$EPROBE
|
||||
|
||||
# With group name and system/event
|
||||
echo "e:$EPROBE $SYSTEM/$EVENT $OPTIONS" >> dynamic_events
|
||||
grep -q "$EPROBE" dynamic_events
|
||||
test -d events/eprobes/$EPROBE
|
||||
echo "-:eprobes/$EPROBE $SYSTEM/$EVENT" >> dynamic_events
|
||||
! grep -q "$EPROBE" dynamic_events
|
||||
! test -d events/eprobes/$EPROBE
|
||||
|
||||
# With just event name and system/event
|
||||
echo "e:$EPROBE $SYSTEM/$EVENT $OPTIONS" >> dynamic_events
|
||||
grep -q "$EPROBE" dynamic_events
|
||||
test -d events/eprobes/$EPROBE
|
||||
echo "-:$EPROBE $SYSTEM/$EVENT" >> dynamic_events
|
||||
! grep -q "$EPROBE" dynamic_events
|
||||
! test -d events/eprobes/$EPROBE
|
||||
|
||||
# With just event name and system/event and options
|
||||
echo "e:$EPROBE $SYSTEM/$EVENT $OPTIONS" >> dynamic_events
|
||||
grep -q "$EPROBE" dynamic_events
|
||||
test -d events/eprobes/$EPROBE
|
||||
echo "-:$EPROBE $SYSTEM/$EVENT $OPTIONS" >> dynamic_events
|
||||
! grep -q "$EPROBE" dynamic_events
|
||||
! test -d events/eprobes/$EPROBE
|
||||
|
||||
# With group name and system/event and options
|
||||
echo "e:$EPROBE $SYSTEM/$EVENT $OPTIONS" >> dynamic_events
|
||||
grep -q "$EPROBE" dynamic_events
|
||||
test -d events/eprobes/$EPROBE
|
||||
echo "-:eprobes/$EPROBE $SYSTEM/$EVENT $OPTIONS" >> dynamic_events
|
||||
! grep -q "$EPROBE" dynamic_events
|
||||
! test -d events/eprobes/$EPROBE
|
||||
|
||||
# Finally make sure what is in the dynamic_events file clears it too
|
||||
echo "e:$EPROBE $SYSTEM/$EVENT $OPTIONS" >> dynamic_events
|
||||
LINE=`sed -e '/$EPROBE/s/^e/-/' < dynamic_events`
|
||||
test -d events/eprobes/$EPROBE
|
||||
echo "-:eprobes/$EPROBE $SYSTEM/$EVENT $OPTIONS" >> dynamic_events
|
||||
! grep -q "$EPROBE" dynamic_events
|
||||
! test -d events/eprobes/$EPROBE
|
||||
|
||||
clear_trace
|
||||
|
Loading…
Reference in New Issue
Block a user