Home
last modified time | relevance | path

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

/linux-6.1.9/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.1.9/include/linux/
Drv.h65 int rv_unregister_reactor(struct rv_reactor *reactor);
66 int rv_register_reactor(struct rv_reactor *reactor);
/linux-6.1.9/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.