Home
last modified time | relevance | path

Searched refs:completion (Results 1 – 25 of 1343) sorted by relevance

12345678910>>...54

/Linux-v5.10/include/linux/
Dcompletion.h26 struct completion { struct
33 static inline void complete_acquire(struct completion *x) {} in complete_acquire() argument
34 static inline void complete_release(struct completion *x) {} in complete_release()
54 struct completion work = COMPLETION_INITIALIZER(work)
70 struct completion work = COMPLETION_INITIALIZER_ONSTACK(work)
72 struct completion work = COMPLETION_INITIALIZER_ONSTACK_MAP(work, map)
85 static inline void __init_completion(struct completion *x) in __init_completion()
98 static inline void reinit_completion(struct completion *x) in reinit_completion()
103 extern void wait_for_completion(struct completion *);
104 extern void wait_for_completion_io(struct completion *);
[all …]
/Linux-v5.10/kernel/sched/
Dcompletion.c28 void complete(struct completion *x) in complete()
57 void complete_all(struct completion *x) in complete_all()
71 do_wait_for_common(struct completion *x, in do_wait_for_common()
98 __wait_for_common(struct completion *x, in __wait_for_common()
115 wait_for_common(struct completion *x, long timeout, int state) in wait_for_common()
121 wait_for_common_io(struct completion *x, long timeout, int state) in wait_for_common_io()
136 void __sched wait_for_completion(struct completion *x) in wait_for_completion()
155 wait_for_completion_timeout(struct completion *x, unsigned long timeout) in wait_for_completion_timeout()
169 void __sched wait_for_completion_io(struct completion *x) in wait_for_completion_io()
189 wait_for_completion_io_timeout(struct completion *x, unsigned long timeout) in wait_for_completion_io_timeout()
[all …]
/Linux-v5.10/Documentation/scheduler/
Dcompletion.rst2 Completions - "wait for completion" barrier APIs
27 is reduced to a simple flag in 'struct completion', appropriately called "done".
30 kernel/sched/completion.c.
38 - the initialization of the 'struct completion' synchronization object
45 to have marked a completion as 'done' before another thread checks whether
48 To use completions you need to #include <linux/completion.h> and
49 create a static or dynamic variable of type 'struct completion',
52 struct completion {
58 the ->done completion flag for indicating whether it's completed or not.
67 Good, intuitive naming (as always) helps code readability. Naming a completion
[all …]
/Linux-v5.10/tools/testing/selftests/rcutorture/formal/srcu-cbmc/src/
Dlocks.h176 struct completion { struct
182 #define DECLARE_COMPLETION(x) struct completion x = COMPLETION_INITIALIZER(x) argument
185 static inline void init_completion(struct completion *c) in init_completion()
190 static inline void wait_for_completion(struct completion *c) in wait_for_completion()
197 static inline void complete(struct completion *c) in complete()
205 static inline bool try_wait_for_completion(struct completion *c) in try_wait_for_completion()
210 static inline bool completion_done(struct completion *c) in completion_done()
216 static inline void complete_all(struct completion *c) in complete_all()
/Linux-v5.10/drivers/scsi/aic94xx/
Daic94xx_tmf.c67 complete(ascb->completion); in asd_clear_nexus_tasklet_complete()
78 complete(ascb->completion); in asd_clear_nexus_timedout()
85 DECLARE_COMPLETION_ONSTACK(completion); \
94 ascb->completion = &completion; \
106 wait_for_completion(&completion); \
252 complete(ascb->completion); in asd_tmf_timedout()
320 complete(ascb->completion); in asd_tmf_tasklet_complete()
329 DECLARE_COMPLETION_ONSTACK(completion); in asd_clear_nexus()
332 tascb->completion = &completion; in asd_clear_nexus()
339 leftover = wait_for_completion_timeout(&completion, in asd_clear_nexus()
[all …]
/Linux-v5.10/arch/powerpc/sysdev/
Dpmi.c33 struct completion *completion; member
52 if (type & PMI_ACK && !data->completion) { in pmi_irq_handler()
58 if (data->completion && !(type & PMI_ACK)) { in pmi_irq_handler()
78 complete(data->completion); in pmi_irq_handler()
208 DECLARE_COMPLETION_ONSTACK(completion); in pmi_send_message()
218 data->completion = &completion; in pmi_send_message()
229 wait_for_completion_interruptible_timeout(data->completion, in pmi_send_message()
232 data->completion = NULL; in pmi_send_message()
/Linux-v5.10/drivers/staging/rts5208/
Drtsx.h96 struct completion cmnd_ready; /* to sleep thread on */
97 struct completion control_exit; /* control thread exit */
98 struct completion polling_exit; /* polling thread exit */
99 struct completion notify; /* thread begin/end */
100 struct completion scanning_done; /* wait for scan thread */
112 struct completion *done;
/Linux-v5.10/drivers/char/hw_random/
Dtimeriomem-rng.c39 struct completion completion; member
61 wait_for_completion(&priv->completion); in timeriomem_rng_read()
85 reinit_completion(&priv->completion); in timeriomem_rng_read()
98 complete(&priv->completion); in timeriomem_rng_trigger()
156 init_completion(&priv->completion); in timeriomem_rng_probe()
170 complete(&priv->completion); in timeriomem_rng_probe()
/Linux-v5.10/Documentation/driver-api/usb/
DURB.rst36 - Each URB has a completion handler, which is called after the action
38 context-pointer for passing information to the completion handler.
42 data to an endpoint while your driver handles completion of another.
60 // (IN) all urbs need completion routines
61 void *context; // context for completion routine
62 usb_complete_t complete; // pointer to completion routine
64 // (OUT) status after each completion
110 returned to you in a completion callback. It will automatically be
122 length, the completion handler, and its context. Take a look at the some
156 never look at that value except in your completion callback.
[all …]
/Linux-v5.10/net/bluetooth/
Decdh_helper.c29 struct completion completion; member
41 complete(&res->completion); in ecdh_complete()
79 init_completion(&result.completion); in compute_ecdh_secret()
92 wait_for_completion(&result.completion); in compute_ecdh_secret()
186 init_completion(&result.completion); in generate_ecdh_public_key()
195 wait_for_completion(&result.completion); in generate_ecdh_public_key()
/Linux-v5.10/drivers/rpmsg/
Dqcom_glink_ssr.c54 struct completion completion; member
92 complete(&ssr->completion); in qcom_glink_ssr_callback()
107 reinit_completion(&ssr->completion); in qcom_glink_ssr_notifier_call()
119 ret = wait_for_completion_timeout(&ssr->completion, HZ); in qcom_glink_ssr_notifier_call()
134 init_completion(&ssr->completion); in qcom_glink_ssr_probe()
/Linux-v5.10/drivers/net/ipa/
Dgsi.h116 struct completion completion; /* signals channel command completion */ member
143 struct completion completion; /* signals event ring state changes */ member
160 struct completion completion; /* for global EE commands */ member
/Linux-v5.10/drivers/s390/char/
Dsclp_ftp.c37 struct completion *completion = data; in sclp_ftp_txcb() local
43 complete(completion); in sclp_ftp_txcb()
87 struct completion completion; in sclp_ftp_et7() local
128 req->callback_data = &completion; in sclp_ftp_et7()
130 init_completion(&completion); in sclp_ftp_et7()
137 wait_for_completion(&completion); in sclp_ftp_et7()
Dsclp_pci.c105 struct completion *completion = data; in sclp_pci_callback() local
107 complete(completion); in sclp_pci_callback()
132 DECLARE_COMPLETION_ONSTACK(completion); in sclp_pci_report()
158 req.callback_data = &completion; in sclp_pci_report()
179 wait_for_completion(&completion); in sclp_pci_report()
Dsclp_cpi_sys.c74 struct completion *completion = data; in cpi_callback() local
76 complete(completion); in cpi_callback()
128 struct completion completion; in cpi_req() local
147 init_completion(&completion); in cpi_req()
148 req->callback_data = &completion; in cpi_req()
155 wait_for_completion(&completion); in cpi_req()
/Linux-v5.10/Documentation/admin-guide/blockdev/drbd/
Ddisk-states-8.dot11 Consistent -> Failed [ label = "io completion error" ]
12 Outdated -> Failed [ label = "io completion error" ]
13 UpToDate -> Failed [ label = "io completion error" ]
14 Inconsistent -> Failed [ label = "io completion error" ]
/Linux-v5.10/Documentation/sparc/oradax/
Doracle-dax.rst41 pointer to a "completion area", which is a 128 byte memory block that
43 interrupt is generated upon completion; the completion area must be
46 processor until the completion status has been updated by the
52 completion of a request and resumption of execution of the requesting
85 call, and gets results (if any) via read(). The completion areas are
96 requests. The completion area buffer is also allocated, and this is
97 large enough to contain the completion areas for many concurrent
116 requests. Since no interrupt is generated upon the completion of a
142 completion area to use, and may be set via lseek() or using the
157 The mmap() function provides access to the completion area allocated
[all …]
/Linux-v5.10/drivers/net/ethernet/brocade/bna/
Dbnad.h119 struct completion comp;
124 struct completion ioc_comp;
125 struct completion ucast_comp;
126 struct completion mcast_comp;
127 struct completion tx_comp;
128 struct completion rx_comp;
129 struct completion stats_comp;
130 struct completion enet_comp;
131 struct completion mtu_comp;
/Linux-v5.10/drivers/iio/proximity/
Dvl53l0x-i2c.c44 struct completion completion; member
52 complete(&data->completion); in vl53l0x_handle_irq()
113 reinit_completion(&data->completion); in vl53l0x_read_proximity()
115 ret = wait_for_completion_timeout(&data->completion, HZ/10); in vl53l0x_read_proximity()
218 init_completion(&data->completion); in vl53l0x_probe()
/Linux-v5.10/drivers/iio/adc/
Dstmpe-adc.c55 struct completion completion; member
68 reinit_completion(&info->completion); in stmpe_read_voltage()
80 ret = wait_for_completion_timeout(&info->completion, STMPE_ADC_TIMEOUT); in stmpe_read_voltage()
103 reinit_completion(&info->completion); in stmpe_read_temp()
115 ret = wait_for_completion_timeout(&info->completion, STMPE_ADC_TIMEOUT); in stmpe_read_temp()
203 complete(&info->completion); in stmpe_adc_isr()
277 init_completion(&info->completion); in stmpe_adc_probe()
Dintel_mrfld_adc.c56 struct completion completion; member
66 complete(&adc->completion); in mrfld_adc_thread_isr()
81 reinit_completion(&adc->completion); in mrfld_adc_single_conv()
97 timeout = wait_for_completion_interruptible_timeout(&adc->completion, in mrfld_adc_single_conv()
195 init_completion(&adc->completion); in mrfld_adc_probe()
/Linux-v5.10/drivers/scsi/bfa/
Dbfad_drv.h144 struct completion *comp_del;
193 struct completion comp;
194 struct completion suspend;
195 struct completion enable_comp;
196 struct completion disable_comp;
275 struct completion comp;
280 struct completion comp;
/Linux-v5.10/include/target/iscsi/
Discsi_target_core.h548 struct completion conn_post_wait_comp;
549 struct completion conn_wait_comp;
550 struct completion conn_wait_rcfr_comp;
551 struct completion conn_waiting_on_uc_comp;
552 struct completion conn_logout_comp;
553 struct completion tx_half_close_comp;
554 struct completion rx_half_close_comp;
604 struct completion rx_login_comp;
680 struct completion async_msg_comp;
681 struct completion reinstatement_comp;
[all …]
/Linux-v5.10/drivers/net/wireless/ath/ath10k/
Dcore.h188 struct completion service_ready;
189 struct completion unified_ready;
190 struct completion barrier;
191 struct completion radar_confirm;
676 struct completion fw_stats_complete;
689 struct completion tpc_complete;
1046 struct completion target_suspend;
1047 struct completion driver_recovery;
1093 struct completion started;
1094 struct completion completed;
[all …]
/Linux-v5.10/drivers/md/
Ddm-core.h25 struct completion completion; member
174 static inline struct completion *dm_get_completion_from_kobject(struct kobject *kobj) in dm_get_completion_from_kobject()
176 return &container_of(kobj, struct dm_kobject_holder, kobj)->completion; in dm_get_completion_from_kobject()

12345678910>>...54