Home
last modified time | relevance | path

Searched refs:teardown (Results 1 - 25 of 116) sorted by relevance

12345

/kernel/linux/linux-6.6/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( in map_ops_for_each_subtest()
[all...]
/kernel/linux/linux-5.10/include/linux/
H A Dcpuhotplug.h208 int (*teardown)(unsigned int cpu), bool multi_instance);
213 int (*teardown)(unsigned int cpu),
220 * @teardown: teardown callback function
228 int (*teardown)(unsigned int cpu)) in cpuhp_setup_state()
230 return __cpuhp_setup_state(state, name, true, startup, teardown, false); in cpuhp_setup_state()
236 int (*teardown)(unsigned int cpu)) in cpuhp_setup_state_cpuslocked()
239 teardown, false); in cpuhp_setup_state_cpuslocked()
248 * @teardown: teardown callbac
[all...]
/kernel/linux/linux-6.6/include/linux/
H A Dcpuhotplug.h29 * installed teardown callbacks are invoked in the reverse order from
38 * hotplug startup/teardown code with interrupts disabled.
143 * bringup and teardown code.
268 int (*teardown)(unsigned int cpu), bool multi_instance);
273 int (*teardown)(unsigned int cpu),
281 * @teardown: teardown callback function or NULL if not required
289 int (*teardown)(unsigned int cpu)) in cpuhp_setup_state()
291 return __cpuhp_setup_state(state, name, true, startup, teardown, false); in cpuhp_setup_state()
301 * @teardown
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/rseq/
H A Drseq-x86.h99 #define RSEQ_ASM_DEFINE_ABORT(label, teardown, abort_label) \
105 teardown \
109 #define RSEQ_ASM_DEFINE_CMPFAIL(label, teardown, cmpfail_label) \
112 teardown \
185 #define RSEQ_ASM_DEFINE_ABORT(label, teardown, abort_label) \
191 teardown \
195 #define RSEQ_ASM_DEFINE_CMPFAIL(label, teardown, cmpfail_label) \
198 teardown \
H A Drseq-mips.h126 #define __RSEQ_ASM_DEFINE_ABORT(table_label, label, teardown, \
137 teardown \
140 #define RSEQ_ASM_DEFINE_ABORT(table_label, label, teardown, abort_label, \
142 __RSEQ_ASM_DEFINE_ABORT(table_label, label, teardown, \
146 #define RSEQ_ASM_DEFINE_CMPFAIL(label, teardown, cmpfail_label) \
148 teardown \
H A Drseq-arm.h123 #define __RSEQ_ASM_DEFINE_ABORT(table_label, label, teardown, \
132 teardown \
135 #define RSEQ_ASM_DEFINE_ABORT(table_label, label, teardown, abort_label, \
137 __RSEQ_ASM_DEFINE_ABORT(table_label, label, teardown, \
141 #define RSEQ_ASM_DEFINE_CMPFAIL(label, teardown, cmpfail_label) \
143 teardown \
H A Drseq-s390.h118 #define RSEQ_ASM_DEFINE_ABORT(label, teardown, abort_label) \
122 teardown \
126 #define RSEQ_ASM_DEFINE_CMPFAIL(label, teardown, cmpfail_label) \
129 teardown \
/kernel/linux/linux-6.6/kernel/
H A Dcpu.c56 * @bringup: Single callback bringup or teardown selector
122 * @teardown: Teardown function of the step
123 * @cant_stop: Bringup/teardown can't be stopped at this step
137 } 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()
294 * cpuhp_ap_update_sync_state - Update synchronization state during bringup/teardown
1026 * The cpu hotplug threads manage the bringup and teardown o
[all...]
/kernel/linux/linux-5.10/kernel/
H A Dcpu.c53 * @bringup: Single callback bringup or teardown selector
113 * @teardown: Teardown function of the step
114 * @cant_stop: Bringup/teardown can't be stopped at this step
127 } teardown; member
164 if (!(bringup ? step->startup.single : step->teardown.single)) in cpuhp_invoke_callback()
172 cb = bringup ? step->startup.single : step->teardown.single; in cpuhp_invoke_callback()
180 cbm = bringup ? step->startup.multi : step->teardown.multi; in cpuhp_invoke_callback()
216 cbm = !bringup ? step->startup.multi : step->teardown.multi; in cpuhp_invoke_callback()
637 * The cpu hotplug threads manage the bringup and teardown of the cpus
655 * Execute teardown/startu
[all...]
/kernel/linux/linux-5.10/tools/testing/selftests/rseq/
H A Drseq-mips.h132 #define __RSEQ_ASM_DEFINE_ABORT(table_label, label, teardown, \
143 teardown \
146 #define RSEQ_ASM_DEFINE_ABORT(table_label, label, teardown, abort_label, \
148 __RSEQ_ASM_DEFINE_ABORT(table_label, label, teardown, \
152 #define RSEQ_ASM_DEFINE_CMPFAIL(label, teardown, cmpfail_label) \
154 teardown \
592 /* teardown */ in rseq_cmpeqv_trymemcpy_storev()
598 /* teardown */ in rseq_cmpeqv_trymemcpy_storev()
604 /* teardown */ in rseq_cmpeqv_trymemcpy_storev()
611 /* teardown */ in rseq_cmpeqv_trymemcpy_storev()
[all...]
H A Drseq-arm.h127 #define __RSEQ_ASM_DEFINE_ABORT(table_label, label, teardown, \
136 teardown \
139 #define RSEQ_ASM_DEFINE_ABORT(table_label, label, teardown, abort_label, \
141 __RSEQ_ASM_DEFINE_ABORT(table_label, label, teardown, \
145 #define RSEQ_ASM_DEFINE_CMPFAIL(label, teardown, cmpfail_label) \
147 teardown \
629 /* teardown */ in rseq_cmpeqv_trymemcpy_storev()
635 /* teardown */ in rseq_cmpeqv_trymemcpy_storev()
641 /* teardown */ in rseq_cmpeqv_trymemcpy_storev()
648 /* teardown */ in rseq_cmpeqv_trymemcpy_storev()
[all...]
H A Drseq-x86.h98 #define RSEQ_ASM_DEFINE_ABORT(label, teardown, abort_label) \
104 teardown \
108 #define RSEQ_ASM_DEFINE_CMPFAIL(label, teardown, cmpfail_label) \
111 teardown \
556 /* teardown */ in rseq_cmpeqv_trymemcpy_storev()
707 #define RSEQ_ASM_DEFINE_ABORT(label, teardown, abort_label) \
713 teardown \
717 #define RSEQ_ASM_DEFINE_CMPFAIL(label, teardown, cmpfail_label) \
720 teardown \
1179 /* teardown */ in rseq_cmpeqv_trymemcpy_storev()
[all...]
/kernel/linux/linux-5.10/net/dsa/
H A Ddsa2.c465 goto teardown; in dsa_switch_setup()
482 teardown: in dsa_switch_setup()
483 if (ds->ops->teardown) in dsa_switch_setup()
484 ds->ops->teardown(ds); in dsa_switch_setup()
514 if (ds->ops->teardown) in dsa_switch_teardown()
515 ds->ops->teardown(ds); in dsa_switch_teardown()
537 goto teardown; in dsa_tree_setup_switches()
547 goto teardown; in dsa_tree_setup_switches()
554 teardown: in dsa_tree_setup_switches()
/kernel/linux/linux-5.10/drivers/net/wireless/marvell/libertas/
H A Dif_spi.c1117 goto teardown; in if_spi_probe()
1191 teardown: in if_spi_probe()
1192 if (pdata->teardown) in if_spi_probe()
1193 pdata->teardown(spi); in if_spi_probe()
1212 if (card->pdata->teardown) in libertas_spi_remove()
1213 card->pdata->teardown(spi); in libertas_spi_remove()
1229 if (card->pdata->teardown) in if_spi_suspend()
1230 card->pdata->teardown(spi); in if_spi_suspend()
/kernel/linux/linux-6.6/drivers/net/wireless/marvell/libertas/
H A Dif_spi.c1119 goto teardown; in if_spi_probe()
1193 teardown: in if_spi_probe()
1194 if (pdata->teardown) in if_spi_probe()
1195 pdata->teardown(spi); in if_spi_probe()
1214 if (card->pdata->teardown) in libertas_spi_remove()
1215 card->pdata->teardown(spi); in libertas_spi_remove()
1229 if (card->pdata->teardown) in if_spi_suspend()
1230 card->pdata->teardown(spi); in if_spi_suspend()
/kernel/linux/linux-5.10/include/linux/spi/
H A Dlibertas_spi.h21 /* Board specific setup/teardown */
23 int (*teardown)(struct spi_device *spi); member
/kernel/linux/linux-6.6/include/linux/spi/
H A Dlibertas_spi.h21 /* Board specific setup/teardown */
23 int (*teardown)(struct spi_device *spi); member
/kernel/linux/linux-5.10/arch/m68k/include/asm/
H A Dmcfqspi.h14 * @teardown: finish with the control; free gpio's, etc. May be NULL.
25 void (*teardown)(struct mcfqspi_cs_control *); member
/kernel/linux/linux-6.6/arch/m68k/include/asm/
H A Dmcfqspi.h14 * @teardown: finish with the control; free gpio's, etc. May be NULL.
25 void (*teardown)(struct mcfqspi_cs_control *); member
/kernel/linux/linux-5.10/include/linux/platform_data/
H A Dmax732x.h14 void *context; /* param to setup/teardown */
19 int (*teardown)(struct i2c_client *client, member
H A Dpcf857x.h12 * @teardown: optional callback issued before the GPIOs are invalidated
13 * @context: optional parameter passed to setup() and teardown()
39 int (*teardown)(struct i2c_client *client, member
H A Dpca953x.h20 void *context; /* param to setup/teardown */
25 int (*teardown)(struct i2c_client *client, member
/kernel/linux/linux-6.6/include/linux/platform_data/
H A Dpca953x.h20 void *context; /* param to setup/teardown */
25 void (*teardown)(struct i2c_client *client, member
/kernel/linux/linux-6.6/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()
[all...]

Completed in 18 milliseconds

12345