]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
rv: rename CONFIG_DA_MON_EVENTS to CONFIG_RV_MON_EVENTS
authorNam Cao <namcao@linutronix.de>
Wed, 9 Jul 2025 19:21:16 +0000 (21:21 +0200)
committerSteven Rostedt (Google) <rostedt@goodmis.org>
Wed, 9 Jul 2025 19:27:01 +0000 (15:27 -0400)
CONFIG_DA_MON_EVENTS is not specific to deterministic automaton. It could
be used for other monitor types. Therefore rename it to
CONFIG_RV_MON_EVENTS.

This prepares for the introduction of linear temporal logic monitor.

Cc: John Ogness <john.ogness@linutronix.de>
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Link: https://lore.kernel.org/507210517123d887c1d208aa2fd45ec69765d3f0.1752088709.git.namcao@linutronix.de
Reviewed-by: Gabriele Monaco <gmonaco@redhat.com>
Signed-off-by: Nam Cao <namcao@linutronix.de>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
kernel/trace/rv/Kconfig
kernel/trace/rv/rv.c

index b39f36013ef23467a6c569b62bfdf6a3f5d41ec7..6cdffc04b73c25fc1f122afc0cdf590ba55b61dd 100644 (file)
@@ -1,14 +1,14 @@
 # SPDX-License-Identifier: GPL-2.0-only
 #
-config DA_MON_EVENTS
+config RV_MON_EVENTS
        bool
 
 config DA_MON_EVENTS_IMPLICIT
-       select DA_MON_EVENTS
+       select RV_MON_EVENTS
        bool
 
 config DA_MON_EVENTS_ID
-       select DA_MON_EVENTS
+       select RV_MON_EVENTS
        bool
 
 menuconfig RV
index e4077500a91dbb4a70ed8ae7ec6cef80981532e6..e25d65fe432a6bd4ce21bf9c0a5f609cc23b153c 100644 (file)
 #include <linux/init.h>
 #include <linux/slab.h>
 
-#ifdef CONFIG_DA_MON_EVENTS
+#ifdef CONFIG_RV_MON_EVENTS
 #define CREATE_TRACE_POINTS
 #include <rv_trace.h>
 #endif