diff options
author | Steven Rostedt (Google) <rostedt@goodmis.org> | 2023-03-28 17:10:57 +0200 |
---|---|---|
committer | Steven Rostedt (Google) <rostedt@goodmis.org> | 2023-03-29 12:52:09 +0200 |
commit | 88fe1ec75fcb296579e05eaf3807da3ee83137e4 (patch) | |
tree | 27498273ab22c7c6682bfc46b747005982ba44e5 /kernel/trace | |
parent | tracing/user_events: Use print_format_fields() for trace output (diff) | |
download | linux-88fe1ec75fcb296579e05eaf3807da3ee83137e4.tar.xz linux-88fe1ec75fcb296579e05eaf3807da3ee83137e4.zip |
tracing: Unbreak user events
The user events was added a bit prematurely, and there were a few kernel
developers that had issues with it. The API also needed a bit of work to
make sure it would be stable. It was decided to make user events "broken"
until this was settled. Now it has a new API that appears to be as stable
as it will be without the use of a crystal ball. It's being used within
Microsoft as is, which means the API has had some testing in real world
use cases. It went through many discussions in the bi-weekly tracing
meetings, and there's been no more comments about updates.
I feel this is good to go.
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Diffstat (limited to 'kernel/trace')
-rw-r--r-- | kernel/trace/Kconfig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/kernel/trace/Kconfig b/kernel/trace/Kconfig index c7020e071bf9..8cf97fa4a4b3 100644 --- a/kernel/trace/Kconfig +++ b/kernel/trace/Kconfig @@ -792,7 +792,6 @@ config USER_EVENTS bool "User trace events" select TRACING select DYNAMIC_EVENTS - depends on BROKEN || COMPILE_TEST # API needs to be straighten out help User trace events are user-defined trace events that can be used like an existing kernel trace event. User trace |