Searched refs:reactor (Results 1 – 5 of 5) sorted by relevance
/linux-6.1.9/kernel/trace/rv/ |
D | rv_reactors.c | 78 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 …]
|
D | Kconfig | 65 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()
|
D | rv.h | 28 struct rv_reactor *reactor; member
|
/linux-6.1.9/include/linux/ |
D | rv.h | 65 int rv_unregister_reactor(struct rv_reactor *reactor); 66 int rv_register_reactor(struct rv_reactor *reactor);
|
/linux-6.1.9/Documentation/trace/rv/ |
D | runtime-verification.rst | 59 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.
|