Home
last modified time | relevance | path

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

/linux/kernel/trace/rv/
H A Drv_reactors.c90 struct rv_reactor *reactor = container_of(p, struct rv_reactor, list); in reactors_show() local
92 seq_printf(m, "%s\n", reactor->name); in reactors_show()
143 struct rv_reactor *reactor = container_of(p, struct rv_reactor, list); in monitor_reactor_show() local
145 if (mon->reactor == reactor) in monitor_reactor_show()
146 seq_printf(m, "[%s]\n", reactor->name); in monitor_reactor_show()
148 seq_printf(m, "%s\n", reactor->name); in monitor_reactor_show()
163 struct rv_reactor *reactor, in monitor_swap_reactors_single() argument
169 if (mon->reactor == reactor) in monitor_swap_reactors_single()
176 mon->reactor = reactor; in monitor_swap_reactors_single()
177 mon->react = reactor->react; in monitor_swap_reactors_single()
[all …]
H A DKconfig82 bool "Printk reactor"
86 Enables the printk reactor. The printk reactor emits a printk()
90 bool "Panic reactor"
94 Enables the panic reactor. The panic reactor emits a printk()
/linux/tools/testing/selftests/verification/test.d/
H A Drv_monitor_reactor.tc10 while read -r reactor; do
11 [ "$reactor" = nop ] && continue
13 echo "$reactor" > "monitors/$prefix$monitor/reactors"
14 grep -q "\\[$reactor\\]" "monitors/$prefix$monitor/reactors"
25 while read -r reactor; do
26 [ "$reactor" = nop ] && continue
28 echo "$reactor" > "monitors/$monitor/reactors"
29 grep -q "\\[$reactor\\]" "monitors/$monitor/reactors"
34 grep -q "\\[$reactor\\]" "monitors/$monitor/$nested/reactors"
H A Dfunctions5 r=${i%:reactor}
18 echo "Required reactor $r is not configured."
/linux/Documentation/tools/rv/
H A Dcommon_ikm.rst5 **-r**, **--reactor** *reactor*
7 Enables the *reactor*. See **-h** for a list of available reactors.
/linux/include/linux/
H A Drv.h104 struct rv_reactor *reactor; member
119 int rv_unregister_reactor(struct rv_reactor *reactor);
120 int rv_register_reactor(struct rv_reactor *reactor);
/linux/tools/verification/rv/src/
H A Din_kernel.c232 static int ikm_write_reactor(char *monitor_name, char *reactor) in ikm_write_reactor() argument
238 retval = tracefs_instance_file_write(NULL, path, reactor); in ikm_write_reactor()
239 debug_msg("ikm: write \"%s\" reactors: %d\n", reactor, retval); in ikm_write_reactor()