Home
last modified time | relevance | path

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

/linux-4.1.27/drivers/scsi/be2iscsi/
Dbe_cmds.c291 static inline bool be_mcc_compl_is_new(struct be_mcc_compl *compl) in be_mcc_compl_is_new() argument
293 if (compl->flags != 0) { in be_mcc_compl_is_new()
294 compl->flags = le32_to_cpu(compl->flags); in be_mcc_compl_is_new()
295 WARN_ON((compl->flags & CQE_FLAGS_VALID_MASK) == 0); in be_mcc_compl_is_new()
301 static inline void be_mcc_compl_use(struct be_mcc_compl *compl) in be_mcc_compl_use() argument
303 compl->flags = 0; in be_mcc_compl_use()
318 struct be_mcc_compl *compl) in be_mcc_compl_process() argument
326 be_dws_le_to_cpu(compl, 4); in be_mcc_compl_process()
328 compl_status = (compl->status >> CQE_STATUS_COMPL_SHIFT) & in be_mcc_compl_process()
331 extd_status = (compl->status >> CQE_STATUS_EXTD_SHIFT) & in be_mcc_compl_process()
[all …]
Dbe_cmds.h158 struct be_mcc_compl compl; member
743 struct be_mcc_compl *compl);
/linux-4.1.27/crypto/
Dseqiv.c103 crypto_completion_t compl; in seqiv_givencrypt() local
111 compl = req->creq.base.complete; in seqiv_givencrypt()
125 compl = seqiv_complete; in seqiv_givencrypt()
129 ablkcipher_request_set_callback(subreq, req->creq.base.flags, compl, in seqiv_givencrypt()
149 crypto_completion_t compl; in seqiv_aead_givencrypt() local
157 compl = areq->base.complete; in seqiv_aead_givencrypt()
171 compl = seqiv_aead_complete; in seqiv_aead_givencrypt()
175 aead_request_set_callback(subreq, areq->base.flags, compl, data); in seqiv_aead_givencrypt()
Deseqiv.c71 crypto_completion_t compl; in eseqiv_givencrypt() local
89 compl = req->creq.base.complete; in eseqiv_givencrypt()
104 compl = eseqiv_complete; in eseqiv_givencrypt()
108 ablkcipher_request_set_callback(subreq, req->creq.base.flags, compl, in eseqiv_givencrypt()
Dgcm.c231 crypto_completion_t compl, in gcm_hash_update() argument
238 compl, req); in gcm_hash_update()
247 crypto_completion_t compl) in gcm_hash_remain() argument
252 compl, req); in gcm_hash_remain()
378 crypto_completion_t compl; in __gcm_hash_assoc_remain_done() local
383 compl = remain ? gcm_hash_crypt_done : in __gcm_hash_assoc_remain_done()
385 err = gcm_hash_update(req, pctx, compl, in __gcm_hash_assoc_remain_done()
432 crypto_completion_t compl; in __gcm_hash_init_done() local
437 compl = remain ? gcm_hash_assoc_done : in __gcm_hash_init_done()
439 err = gcm_hash_update(req, pctx, compl, in __gcm_hash_init_done()
[all …]
Dcryptd.c250 crypto_completion_t compl) in cryptd_blkcipher_enqueue() argument
258 req->base.complete = compl; in cryptd_blkcipher_enqueue()
437 crypto_completion_t compl) in cryptd_hash_enqueue() argument
445 req->base.complete = compl; in cryptd_hash_enqueue()
697 crypto_completion_t compl) in cryptd_aead_enqueue() argument
704 req->base.complete = compl; in cryptd_aead_enqueue()
/linux-4.1.27/drivers/crypto/qat/qat_common/
Dadf_aer.c81 struct completion compl; member
131 complete(&reset_data->compl); in adf_device_reset_worker()
150 init_completion(&reset_data->compl); in adf_dev_aer_schedule_reset()
161 &reset_data->compl, wait_jiffies); in adf_dev_aer_schedule_reset()
/linux-4.1.27/drivers/net/ethernet/emulex/benet/
Dbe_cmds.c109 static inline bool be_mcc_compl_is_new(struct be_mcc_compl *compl) in be_mcc_compl_is_new() argument
113 if (compl->flags != 0) { in be_mcc_compl_is_new()
114 flags = le32_to_cpu(compl->flags); in be_mcc_compl_is_new()
116 compl->flags = flags; in be_mcc_compl_is_new()
124 static inline void be_mcc_compl_use(struct be_mcc_compl *compl) in be_mcc_compl_use() argument
126 compl->flags = 0; in be_mcc_compl_use()
155 struct be_mcc_compl *compl, in be_async_cmd_process() argument
158 enum mcc_base_status base_status = base_status(compl->status); in be_async_cmd_process()
175 adapter->flash_status = compl->status; in be_async_cmd_process()
204 struct be_mcc_compl *compl) in be_mcc_compl_process() argument
[all …]
Dbe_main.c1953 static void be_parse_rx_compl_v1(struct be_eth_rx_compl *compl, in be_parse_rx_compl_v1() argument
1956 rxcp->pkt_size = GET_RX_COMPL_V1_BITS(pktsize, compl); in be_parse_rx_compl_v1()
1957 rxcp->vlanf = GET_RX_COMPL_V1_BITS(vtp, compl); in be_parse_rx_compl_v1()
1958 rxcp->err = GET_RX_COMPL_V1_BITS(err, compl); in be_parse_rx_compl_v1()
1959 rxcp->tcpf = GET_RX_COMPL_V1_BITS(tcpf, compl); in be_parse_rx_compl_v1()
1960 rxcp->udpf = GET_RX_COMPL_V1_BITS(udpf, compl); in be_parse_rx_compl_v1()
1961 rxcp->ip_csum = GET_RX_COMPL_V1_BITS(ipcksm, compl); in be_parse_rx_compl_v1()
1962 rxcp->l4_csum = GET_RX_COMPL_V1_BITS(l4_cksm, compl); in be_parse_rx_compl_v1()
1963 rxcp->ipv6 = GET_RX_COMPL_V1_BITS(ip_version, compl); in be_parse_rx_compl_v1()
1964 rxcp->num_rcvd = GET_RX_COMPL_V1_BITS(numfrags, compl); in be_parse_rx_compl_v1()
[all …]
Dbe_cmds.h185 struct be_mcc_compl compl; member
/linux-4.1.27/include/crypto/
Dskcipher.h89 crypto_completion_t compl, void *data) in skcipher_givcrypt_set_callback() argument
91 ablkcipher_request_set_callback(&req->creq, flags, compl, data); in skcipher_givcrypt_set_callback()
Daead.h78 crypto_completion_t compl, void *data) in aead_givcrypt_set_callback() argument
80 aead_request_set_callback(&req->areq, flags, compl, data); in aead_givcrypt_set_callback()
Dhash.h567 crypto_completion_t compl, in ahash_request_set_callback() argument
570 req->base.complete = compl; in ahash_request_set_callback()
/linux-4.1.27/drivers/net/wireless/ti/wlcore/
Dps.c109 DECLARE_COMPLETION_ONSTACK(compl); in wl1271_ps_elp_wakeup()
138 wl->elp_compl = &compl; in wl1271_ps_elp_wakeup()
149 &compl, msecs_to_jiffies(WL1271_WAKEUP_TIMEOUT)); in wl1271_ps_elp_wakeup()
/linux-4.1.27/drivers/video/fbdev/omap2/dss/
Ddispc-compat.c464 struct completion *compl = data; in dispc_mgr_disable_isr() local
465 complete(compl); in dispc_mgr_disable_isr()
514 struct completion *compl = data; in dispc_digit_out_enable_isr() local
518 complete(compl); in dispc_digit_out_enable_isr()
/linux-4.1.27/drivers/gpu/drm/omapdrm/
Domap_dmm_priv.h151 struct completion compl; member
Domap_dmm_tiler.c153 complete(&dmm->engines[i].compl); in omap_dmm_irq_handler()
277 reinit_completion(&engine->compl); in dmm_txn_commit()
286 if (!wait_for_completion_timeout(&engine->compl, in dmm_txn_commit()
723 init_completion(&omap_dmm->engines[i].compl); in omap_dmm_probe()
/linux-4.1.27/drivers/usb/misc/
Duss720.c76 struct completion compl; member
134 complete(&rq->compl); in async_complete()
159 init_completion(&rq->compl); in submit_async_request()
233 if (wait_for_completion_timeout(&rq->compl, HZ)) { in get_1284_register()
/linux-4.1.27/drivers/scsi/bfa/
Dbfa_core.c247 static void bfa_iocfc_stop_cb(void *bfa_arg, bfa_boolean_t compl);
248 static void bfa_iocfc_enable_cb(void *bfa_arg, bfa_boolean_t compl);
249 static void bfa_iocfc_disable_cb(void *bfa_arg, bfa_boolean_t compl);
1207 bfa_iocfc_stop_cb(void *bfa_arg, bfa_boolean_t compl) in bfa_iocfc_stop_cb() argument
1212 if (compl) in bfa_iocfc_stop_cb()
1217 bfa_iocfc_enable_cb(void *bfa_arg, bfa_boolean_t compl) in bfa_iocfc_enable_cb() argument
1222 if (compl) in bfa_iocfc_enable_cb()
1227 bfa_iocfc_disable_cb(void *bfa_arg, bfa_boolean_t compl) in bfa_iocfc_disable_cb() argument
1232 if (compl) in bfa_iocfc_disable_cb()
/linux-4.1.27/include/linux/
Dcrypto.h1162 u32 flags, crypto_completion_t compl, void *data) in ablkcipher_request_set_callback() argument
1164 req->base.complete = compl; in ablkcipher_request_set_callback()
1524 crypto_completion_t compl, in aead_request_set_callback() argument
1527 req->base.complete = compl; in aead_request_set_callback()
/linux-4.1.27/drivers/net/ethernet/chelsio/cxgb3/
Dsge.c1141 unsigned int compl) in write_tx_pkt_wr() argument
1186 | F_WR_SOP | F_WR_EOP | compl); in write_tx_pkt_wr()
1202 htonl(V_WR_OP(FW_WROPCODE_TUNNEL_TX_PKT) | compl), in write_tx_pkt_wr()
1224 unsigned int ndesc, pidx, credits, gen, compl; in t3_eth_xmit() local
1271 compl = (q->unacked & 8) << (S_WR_COMPL - 3); in t3_eth_xmit()
1315 write_tx_pkt_wr(adap, skb, pi, pidx, gen, q, ndesc, compl); in t3_eth_xmit()
/linux-4.1.27/drivers/staging/media/bcm2048/
Dradio-bcm2048.c284 struct completion compl; member
998 if (!wait_for_completion_timeout(&bdev->compl, in bcm2048_set_fm_search_tune_mode()
1926 complete(&bdev->compl); in bcm2048_work()
2607 init_completion(&bdev->compl); in bcm2048_i2c_driver_probe()
/linux-4.1.27/drivers/net/wireless/hostap/
Dhostap_hw.c359 init_waitqueue_head(&entry->compl); in hfa384x_cmd()
363 add_wait_queue(&entry->compl, &wait); in hfa384x_cmd()
408 remove_wait_queue(&entry->compl, &wait); in hfa384x_cmd()
698 wake_up_interruptible(&entry->compl); in prism2_cmd_ev()
Dhostap_wlan.h551 wait_queue_head_t compl; member
/linux-4.1.27/drivers/scsi/cxgbi/cxgb4i/
Dcxgb4i.c569 int dlen, int len, u32 credits, int compl) in make_tx_data_wr() argument