Home
last modified time | relevance | path

Searched refs:teardown (Results 1 – 25 of 180) sorted by relevance

12345678

/openbmc/linux/tools/testing/selftests/bpf/prog_tests/
H A Dglobal_map_resize.c29 goto teardown; in global_map_resize_bss_subtest()
41 goto teardown; in global_map_resize_bss_subtest()
43 goto teardown; in global_map_resize_bss_subtest()
52 goto teardown; in global_map_resize_bss_subtest()
56 goto teardown; in global_map_resize_bss_subtest()
58 goto teardown; in global_map_resize_bss_subtest()
73 goto teardown; in global_map_resize_bss_subtest()
76 goto teardown; in global_map_resize_bss_subtest()
83 goto teardown; in global_map_resize_bss_subtest()
85 teardown: in global_map_resize_bss_subtest()
[all …]
H A Dmap_ops.c70 static void teardown(struct test_map_ops **skel) in teardown() function
81 goto teardown; in map_ops_update_delete_subtest()
97 teardown: in map_ops_update_delete_subtest()
98 teardown(&skel); in map_ops_update_delete_subtest()
106 goto teardown; in map_ops_push_peek_pop_subtest()
129 teardown: in map_ops_push_peek_pop_subtest()
130 teardown(&skel); in map_ops_push_peek_pop_subtest()
138 goto teardown; in map_ops_for_each_subtest()
148 teardown: in map_ops_for_each_subtest()
149 teardown(&skel); in map_ops_for_each_subtest()
/openbmc/linux/Documentation/translations/zh_CN/core-api/
H A Dcpu_hotplug.rst166 有一个startup和teardown的回调。
171 当一个CPU下线时,将按相反的顺序依次调用teardown回调,直到达到CPUHP_OFFLINE状态。当删
183 在该阶段中,startup回调在CPU上线操作启动CPU之前被调用,teardown回调在CPU下线操作使
189 startup回调用于设置CPU成功上线所需要的资源。teardown回调用于释放资源或在热插拔的CPU
195 本阶段中的teardown回调不允许失败。
202 插的CPU上被调用。teardown回调是在CPU完全关闭前不久的CPU下线操作期间,禁用中断的情况
213 该阶段中的startup回调是在CPU上线时在热插拔的CPU上调用的。teardown回调是在CPU下线操
245 [CPUHP_ONLINE - 1]->teardown() -> 成功
247 [CPUHP_AP_ONLINE + 1]->teardown() -> 成功
249 [CPUHP_AP_ONLINE]->teardown() -> 成功
[all …]
/openbmc/linux/include/linux/
H A Dcpuhotplug.h265 int (*teardown)(unsigned int cpu), bool multi_instance);
270 int (*teardown)(unsigned int cpu),
286 int (*teardown)(unsigned int cpu)) in cpuhp_setup_state()
288 return __cpuhp_setup_state(state, name, true, startup, teardown, false); in cpuhp_setup_state()
306 int (*teardown)(unsigned int cpu)) in cpuhp_setup_state_cpuslocked()
309 teardown, false); in cpuhp_setup_state_cpuslocked()
326 int (*teardown)(unsigned int cpu)) in cpuhp_setup_state_nocalls()
328 return __cpuhp_setup_state(state, name, false, startup, teardown, in cpuhp_setup_state_nocalls()
348 int (*teardown)(unsigned int cpu)) in cpuhp_setup_state_nocalls_cpuslocked()
351 teardown, false); in cpuhp_setup_state_nocalls_cpuslocked()
[all …]
/openbmc/linux/tools/testing/selftests/rseq/
H A Drseq-x86.h99 #define RSEQ_ASM_DEFINE_ABORT(label, teardown, abort_label) \ argument
105 teardown \
109 #define RSEQ_ASM_DEFINE_CMPFAIL(label, teardown, cmpfail_label) \ argument
112 teardown \
185 #define RSEQ_ASM_DEFINE_ABORT(label, teardown, abort_label) \ argument
191 teardown \
195 #define RSEQ_ASM_DEFINE_CMPFAIL(label, teardown, cmpfail_label) \ argument
198 teardown \
H A Drseq-arm.h123 #define __RSEQ_ASM_DEFINE_ABORT(table_label, label, teardown, \ argument
132 teardown \
135 #define RSEQ_ASM_DEFINE_ABORT(table_label, label, teardown, abort_label, \ argument
137 __RSEQ_ASM_DEFINE_ABORT(table_label, label, teardown, \
141 #define RSEQ_ASM_DEFINE_CMPFAIL(label, teardown, cmpfail_label) \ argument
143 teardown \
H A Drseq-mips.h126 #define __RSEQ_ASM_DEFINE_ABORT(table_label, label, teardown, \ argument
137 teardown \
140 #define RSEQ_ASM_DEFINE_ABORT(table_label, label, teardown, abort_label, \ argument
142 __RSEQ_ASM_DEFINE_ABORT(table_label, label, teardown, \
146 #define RSEQ_ASM_DEFINE_CMPFAIL(label, teardown, cmpfail_label) \ argument
148 teardown \
H A Drseq-s390.h118 #define RSEQ_ASM_DEFINE_ABORT(label, teardown, abort_label) \ argument
122 teardown \
126 #define RSEQ_ASM_DEFINE_CMPFAIL(label, teardown, cmpfail_label) \ argument
129 teardown \
/openbmc/linux/Documentation/core-api/
H A Dcpu_hotplug.rst139 Once a CPU has been logically shutdown the teardown callbacks of registered
161 CPUHP_OFFLINE to CPUHP_ONLINE. Each state has a startup and a teardown
169 When a CPU is offlined the teardown callbacks are invoked in the reverse
186 started during a CPU online operation. The teardown callbacks are invoked
194 bring a CPU successfully online. The teardown callbacks are used to free
202 The teardown callbacks in this section are not allowed to fail.
211 setup code. The teardown callbacks are invoked with interrupts disabled
226 during a CPU online operation. The teardown callbacks are invoked on the
260 [CPUHP_ONLINE - 1]->teardown() -> success
262 [CPUHP_AP_ONLINE + 1]->teardown() -> success
[all …]
/openbmc/linux/kernel/
H A Dcpu.c137 } teardown; member
155 return bringup ? !step->startup.single : !step->teardown.single; in cpuhp_step_empty()
192 cb = bringup ? step->startup.single : step->teardown.single; in cpuhp_invoke_callback()
199 cbm = bringup ? step->startup.multi : step->teardown.multi; in cpuhp_invoke_callback()
233 cbm = !bringup ? step->startup.multi : step->teardown.multi; in cpuhp_invoke_callback()
2088 .teardown.single = NULL,
2094 .teardown.single = NULL,
2100 .teardown.single = perf_event_exit_cpu,
2105 .teardown.single = NULL,
2110 .teardown.single = NULL,
[all …]
/openbmc/u-boot/lib/efi_selftest/
H A Defi_selftest_watchdog.c131 static int teardown(void) in teardown() function
220 .teardown = teardown,
228 .teardown = teardown,
H A Defi_selftest_exitbootservices.c65 static int teardown(void) in teardown() function
110 .teardown = teardown,
H A Defi_selftest_gop.c44 static int teardown(void) in teardown() function
93 .teardown = teardown,
H A Defi_selftest_startimage_return.c101 static int teardown(void) in teardown() function
147 .teardown = teardown,
H A Defi_selftest_startimage_exit.c101 static int teardown(void) in teardown() function
147 .teardown = teardown,
H A Defi_selftest_textinputex.c98 static int teardown(void) in teardown() function
196 .teardown = teardown,
H A Defi_selftest.c126 static int teardown(struct efi_unit_test *test, unsigned int *failures) in teardown() function
130 if (!test->teardown) in teardown()
133 ret = test->teardown(); in teardown()
206 teardown(test, failures); in efi_st_do_tests()
H A Defi_selftest_events.c74 static int teardown(void) in teardown() function
203 .teardown = teardown,
H A Defi_selftest_tpl.c73 static int teardown(void) in teardown() function
225 .teardown = teardown,
H A Defi_selftest_manageprotocols.c125 static int teardown(void) in teardown() function
381 .teardown = teardown,
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/memtool/memtool/
H A Dtest_read_write_plainfiles.sh16 teardown() { function
60 teardown
/openbmc/openbmc-test-automation/redfish/systems/eventlog/
H A Dtest_event_service.robot10 Suite teardown Suite Teardown Execution
64 [Documentation] Do the suite teardown.
84 [Documentation] Do the post test teardown.
/openbmc/openbmc-test-automation/redfish/systems/
H A Dtest_power_control_metrics.robot48 [Documentation] Do the post suite teardown.
62 [Documentation] Do the post test teardown.
H A Dtest_power_voltage_readings.robot62 [Documentation] Do the post suite teardown.
76 [Documentation] Do the post test teardown.
/openbmc/linux/net/dsa/
H A Ddsa.c658 goto teardown; in dsa_switch_setup()
664 goto teardown; in dsa_switch_setup()
685 teardown: in dsa_switch_setup()
686 if (ds->ops->teardown) in dsa_switch_setup()
687 ds->ops->teardown(ds); in dsa_switch_setup()
710 if (ds->ops->teardown) in dsa_switch_teardown()
711 ds->ops->teardown(ds); in dsa_switch_teardown()
757 goto teardown; in dsa_tree_setup_ports()
767 goto teardown; in dsa_tree_setup_ports()
774 teardown: in dsa_tree_setup_ports()

12345678