Home
last modified time | relevance | path

Searched refs:reactor (Results 1 – 7 of 7) sorted by relevance

/linux-6.6.21/kernel/trace/rv/
Drv_reactors.c78 if (strcmp(name, r->reactor->name) == 0) in get_reactor_rdef_by_name()
91 seq_printf(m, "%s\n", rea_def->reactor->name); in reactors_show()
145 seq_printf(m, "[%s]\n", rdef->reactor->name); in monitor_reactor_show()
147 seq_printf(m, "%s\n", rdef->reactor->name); in monitor_reactor_show()
180 mdef->monitor->react = rdef->reactor->react; in monitor_swap_reactors()
225 if (strcmp(ptr, rdef->reactor->name) != 0) in monitor_reactors_write()
278 static int __rv_register_reactor(struct rv_reactor *reactor) in __rv_register_reactor() argument
283 if (strcmp(reactor->name, r->reactor->name) == 0) { in __rv_register_reactor()
284 pr_info("Reactor %s is already registered\n", reactor->name); in __rv_register_reactor()
293 r->reactor = reactor; in __rv_register_reactor()
[all …]
DKconfig65 bool "Printk reactor"
69 Enables the printk reactor. The printk reactor emits a printk()
73 bool "Panic reactor"
77 Enables the panic reactor. The panic reactor emits a printk()
Drv.h28 struct rv_reactor *reactor; member
/linux-6.6.21/Documentation/tools/rv/
Dcommon_ikm.rst5 **-r**, **--reactor** *reactor*
7 Enables the *reactor*. See **-h** for a list of available reactors.
/linux-6.6.21/include/linux/
Drv.h65 int rv_unregister_reactor(struct rv_reactor *reactor);
66 int rv_register_reactor(struct rv_reactor *reactor);
/linux-6.6.21/tools/verification/rv/src/
Din_kernel.c168 static int ikm_write_reactor(char *monitor_name, char *reactor) in ikm_write_reactor() argument
174 retval = tracefs_instance_file_write(NULL, path, reactor); in ikm_write_reactor()
175 debug_msg("ikm: write \"%s\" reactors: %d\n", reactor, retval); in ikm_write_reactor()
/linux-6.6.21/Documentation/trace/rv/
Druntime-verification.rst59 In Linux terms, a *reactor* is an reaction method available for *RV monitors*.
218 inside "[]". The default one is the nop (no operation) reactor.
219 - Writing the name of a reactor enables it to the given MONITOR.