Tracing fix for histograms and a clean up in ftrace
- Fixed a bug that broke the .sym-offset modifier and added a test to make
sure nothing breaks it again.
- Replace a list_del/list_add() with a list_move()
-----BEGIN PGP SIGNATURE-----
iIoEABYIADIWIQRRSw7ePDh/lE+zeZMp5XQQmuv6qgUCYOhMlxQccm9zdGVkdEBn
b29kbWlzLm9yZwAKCRAp5XQQmuv6quYRAQCbciaL9gQwk6lS4Rn3NkC/i1xsxv0A
q56XDPK3qyuHWQD/d6gcJ5n+Bl0OoNaDyG4UqnSGucZctYQeY4LQMzd4PQA=
=wPyY
-----END PGP SIGNATURE-----
Merge tag 'trace-v5.14-2' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace
Pull tracing fix and cleanup from Steven Rostedt:
"Tracing fix for histograms and a clean up in ftrace:
- Fixed a bug that broke the .sym-offset modifier and added a test to
make sure nothing breaks it again.
- Replace a list_del/list_add() with a list_move()"
* tag 'trace-v5.14-2' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace:
ftrace: Use list_move instead of list_del/list_add
tracing/selftests: Add tests to test histogram sym and sym-offset modifiers
tracing/histograms: Fix parsing of "sym-offset" modifier
This commit is contained in:
commit
5a7f7fc5dd
3 changed files with 26 additions and 2 deletions
|
|
@ -4212,8 +4212,7 @@ static void process_mod_list(struct list_head *head, struct ftrace_ops *ops,
|
|||
if (!func) /* warn? */
|
||||
continue;
|
||||
|
||||
list_del(&ftrace_mod->list);
|
||||
list_add(&ftrace_mod->list, &process_mods);
|
||||
list_move(&ftrace_mod->list, &process_mods);
|
||||
|
||||
/* Use the newly allocated func, as it may be "*" */
|
||||
kfree(ftrace_mod->func);
|
||||
|
|
|
|||
|
|
@ -1555,6 +1555,13 @@ static int contains_operator(char *str)
|
|||
|
||||
switch (*op) {
|
||||
case '-':
|
||||
/*
|
||||
* Unfortunately, the modifier ".sym-offset"
|
||||
* can confuse things.
|
||||
*/
|
||||
if (op - str >= 4 && !strncmp(op - 4, ".sym-offset", 11))
|
||||
return FIELD_OP_NONE;
|
||||
|
||||
if (*str == '-')
|
||||
field_op = FIELD_OP_UNARY_MINUS;
|
||||
else
|
||||
|
|
|
|||
|
|
@ -39,6 +39,24 @@ grep "parent_comm: $COMM" events/sched/sched_process_fork/hist > /dev/null || \
|
|||
|
||||
reset_trigger
|
||||
|
||||
echo "Test histogram with sym modifier"
|
||||
|
||||
echo 'hist:keys=call_site.sym' > events/kmem/kmalloc/trigger
|
||||
for i in `seq 1 10` ; do ( echo "forked" > /dev/null); done
|
||||
grep '{ call_site: \[[0-9a-f][0-9a-f]*\] [_a-zA-Z][_a-zA-Z]* *}' events/kmem/kmalloc/hist > /dev/null || \
|
||||
fail "sym modifier on kmalloc call_site did not work"
|
||||
|
||||
reset_trigger
|
||||
|
||||
echo "Test histogram with sym-offset modifier"
|
||||
|
||||
echo 'hist:keys=call_site.sym-offset' > events/kmem/kmalloc/trigger
|
||||
for i in `seq 1 10` ; do ( echo "forked" > /dev/null); done
|
||||
grep '{ call_site: \[[0-9a-f][0-9a-f]*\] [_a-zA-Z][_a-zA-Z]*+0x[0-9a-f][0-9a-f]*' events/kmem/kmalloc/hist > /dev/null || \
|
||||
fail "sym-offset modifier on kmalloc call_site did not work"
|
||||
|
||||
reset_trigger
|
||||
|
||||
echo "Test histogram with sort key"
|
||||
|
||||
echo 'hist:keys=parent_pid,child_pid:sort=child_pid.ascending' > events/sched/sched_process_fork/trigger
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue