diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2021-10-28 09:50:56 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2021-10-28 09:50:56 -0700 |
commit | fc18cc89b9802dbe710cbfb52d0b11b3197ead18 (patch) | |
tree | 3b18a384d216704274541ae94a5ca2046fcf2ae9 | |
parent | 9c5456773d79b64cc6cebb06f668e29249636ba9 (diff) | |
parent | 7fa598f9706d40bd16f2ab286bdf5808e1393d35 (diff) | |
download | linux-starfive-fc18cc89b9802dbe710cbfb52d0b11b3197ead18.tar.gz linux-starfive-fc18cc89b9802dbe710cbfb52d0b11b3197ead18.tar.bz2 linux-starfive-fc18cc89b9802dbe710cbfb52d0b11b3197ead18.zip |
Merge tag 'trace-v5.15-rc6-2' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace
Pull tracing fix from Steven Rostedt:
"Do not WARN when attaching event probe to non-existent event
If the user tries to attach an event probe (eprobe) to an event that
does not exist, it will trigger a warning. There's an error check that
only expects memory issues otherwise it is considered a bug. But
changes in the code to move around the locking made it that it can
error out if the user attempts to attach to an event that does not
exist, returning an -ENODEV. As this path can be caused by user space
putting in a bad value, do not trigger a WARN"
* tag 'trace-v5.15-rc6-2' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace:
tracing: Do not warn when connecting eprobe to non existing event
-rw-r--r-- | kernel/trace/trace_eprobe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/trace/trace_eprobe.c b/kernel/trace/trace_eprobe.c index c4a15aef36af..5c5f208c15d3 100644 --- a/kernel/trace/trace_eprobe.c +++ b/kernel/trace/trace_eprobe.c @@ -904,8 +904,8 @@ static int __trace_eprobe_create(int argc, const char *argv[]) if (IS_ERR(ep)) { ret = PTR_ERR(ep); - /* This must return -ENOMEM, else there is a bug */ - WARN_ON_ONCE(ret != -ENOMEM); + /* This must return -ENOMEM or misssing event, else there is a bug */ + WARN_ON_ONCE(ret != -ENOMEM && ret != -ENODEV); ep = NULL; goto error; } |