Merge tag 'trace-v4.19-rc8-3' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace
Pull tracing fixes from Steven Rostedt: "Masami had a couple more fixes to the synthetic events. One was a proper error return value, and the other is for the self tests" * tag 'trace-v4.19-rc8-3' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace: selftests/ftrace: Fix synthetic event test to delete event correctly tracing: Return -ENOENT if there is no target synthetic event
This commit is contained in:
@@ -1063,8 +1063,10 @@ static int create_synth_event(int argc, char **argv)
|
||||
event = NULL;
|
||||
ret = -EEXIST;
|
||||
goto out;
|
||||
} else if (delete_event)
|
||||
} else if (delete_event) {
|
||||
ret = -ENOENT;
|
||||
goto out;
|
||||
}
|
||||
|
||||
if (argc < 2) {
|
||||
ret = -EINVAL;
|
||||
|
Reference in New Issue
Block a user