Home
last modified time | relevance | path

Searched refs:rx_ctx (Results 1 – 12 of 12) sorted by relevance

/linux/net/mac80211/
A Dtkip.c275 if (iv32 < rx_ctx->iv32 || in ieee80211_tkip_decrypt_data()
276 (iv32 == rx_ctx->iv32 && in ieee80211_tkip_decrypt_data()
277 (iv16 < rx_ctx->iv16 || in ieee80211_tkip_decrypt_data()
278 (iv16 == rx_ctx->iv16 && in ieee80211_tkip_decrypt_data()
279 (rx_ctx->iv32 || rx_ctx->iv16 || in ieee80211_tkip_decrypt_data()
280 rx_ctx->ctx.state != TKIP_STATE_NOT_INIT))))) in ieee80211_tkip_decrypt_data()
285 rx_ctx->ctx.state = TKIP_STATE_PHASE1_HW_UPLOADED; in ieee80211_tkip_decrypt_data()
289 if (rx_ctx->ctx.state == TKIP_STATE_NOT_INIT || in ieee80211_tkip_decrypt_data()
290 rx_ctx->iv32 != iv32) { in ieee80211_tkip_decrypt_data()
292 tkip_mixing_phase1(tk, &rx_ctx->ctx, ta, iv32); in ieee80211_tkip_decrypt_data()
[all …]
/linux/drivers/mailbox/
A Dbcm-pdc-mailbox.c591 struct pdc_rx_ctx *rx_ctx; in pdc_receive_one() local
620 rx_ctx = &pdcs->rx_ctx[rx_idx]; in pdc_receive_one()
623 mssg.ctx = rx_ctx->rxp_ctx; in pdc_receive_one()
624 rx_ctx->rxp_ctx = NULL; in pdc_receive_one()
625 resp_hdr = rx_ctx->resp_hdr; in pdc_receive_one()
627 dma_unmap_sg(dev, rx_ctx->dst_sg, sg_nents(rx_ctx->dst_sg), in pdc_receive_one()
822 struct pdc_rx_ctx *rx_ctx; in pdc_rx_list_init() local
851 rx_ctx = &pdcs->rx_ctx[pdcs->rxout]; in pdc_rx_list_init()
852 rx_ctx->rxp_ctx = ctx; in pdc_rx_list_init()
853 rx_ctx->dst_sg = dst_sg; in pdc_rx_list_init()
[all …]
/linux/drivers/net/ethernet/mellanox/mlx5/core/en_accel/
A Dtls.c136 struct mlx5e_tls_offload_context_rx *rx_ctx = in mlx5e_tls_add() local
139 rx_ctx->handle = htonl(swid); in mlx5e_tls_add()
169 struct mlx5e_tls_offload_context_rx *rx_ctx; in mlx5e_tls_resync() local
174 rx_ctx = mlx5e_get_tls_rx_context(tls_ctx); in mlx5e_tls_resync()
178 mlx5_accel_tls_resync_rx(priv->mdev, rx_ctx->handle, seq, rcd_sn); in mlx5e_tls_resync()
/linux/include/net/
A Dtls.h652 struct tls_offload_context_rx *rx_ctx = tls_offload_ctx_rx(tls_ctx); in tls_offload_rx_resync_request() local
654 atomic64_set(&rx_ctx->resync_req, ((u64)ntohl(seq) << 32) | RESYNC_REQ); in tls_offload_rx_resync_request()
662 struct tls_offload_context_rx *rx_ctx = tls_offload_ctx_rx(tls_ctx); in tls_offload_rx_resync_async_request_start() local
664 atomic64_set(&rx_ctx->resync_async->req, ((u64)ntohl(seq) << 32) | in tls_offload_rx_resync_async_request_start()
666 rx_ctx->resync_async->loglen = 0; in tls_offload_rx_resync_async_request_start()
667 rx_ctx->resync_async->rcd_delta = 0; in tls_offload_rx_resync_async_request_start()
674 struct tls_offload_context_rx *rx_ctx = tls_offload_ctx_rx(tls_ctx); in tls_offload_rx_resync_async_request_end() local
676 atomic64_set(&rx_ctx->resync_async->req, in tls_offload_rx_resync_async_request_end()
/linux/net/wireless/
A Dlib80211_crypt_wep.c36 struct arc4_ctx rx_ctx; member
177 arc4_setkey(&wep->rx_ctx, key, klen); in lib80211_wep_decrypt()
178 arc4_crypt(&wep->rx_ctx, pos, pos, plen + 4); in lib80211_wep_decrypt()
/linux/net/tls/
A Dtls_device.c681 struct tls_offload_context_rx *rx_ctx = tls_offload_ctx_rx(tls_ctx); in tls_device_resync_rx() local
684 trace_tls_device_rx_resync_send(sk, seq, rcd_sn, rx_ctx->resync_type); in tls_device_resync_rx()
753 struct tls_offload_context_rx *rx_ctx; in tls_device_rx_resync_new_rec() local
767 rx_ctx = tls_offload_ctx_rx(tls_ctx); in tls_device_rx_resync_new_rec()
770 switch (rx_ctx->resync_type) { in tls_device_rx_resync_new_rec()
772 resync_req = atomic64_read(&rx_ctx->resync_req); in tls_device_rx_resync_new_rec()
778 !atomic64_try_cmpxchg(&rx_ctx->resync_req, &resync_req, 0)) in tls_device_rx_resync_new_rec()
782 if (likely(!rx_ctx->resync_nh_do_now)) in tls_device_rx_resync_new_rec()
795 rx_ctx->resync_nh_do_now = 0; in tls_device_rx_resync_new_rec()
800 resync_req = atomic64_read(&rx_ctx->resync_async->req); in tls_device_rx_resync_new_rec()
[all …]
A Dtls_sw.c2316 struct tls_sw_context_rx *rx_ctx = tls_sw_ctx_rx(tls_ctx); in tls_sw_strparser_arm() local
2319 rx_ctx->saved_data_ready = sk->sk_data_ready; in tls_sw_strparser_arm()
2323 strp_check_rcv(&rx_ctx->strp); in tls_sw_strparser_arm()
/linux/net/tipc/
A Dcrypto.c891 struct tipc_crypto_rx_ctx *rx_ctx; in tipc_aead_decrypt() local
913 ctx = tipc_aead_mem_alloc(tfm, sizeof(*rx_ctx), &iv, &req, &sg, nsg); in tipc_aead_decrypt()
945 rx_ctx = (struct tipc_crypto_rx_ctx *)ctx; in tipc_aead_decrypt()
946 rx_ctx->aead = aead; in tipc_aead_decrypt()
947 rx_ctx->bearer = b; in tipc_aead_decrypt()
971 struct tipc_crypto_rx_ctx *rx_ctx = TIPC_SKB_CB(skb)->crypto_ctx; in tipc_aead_decrypt_done() local
972 struct tipc_bearer *b = rx_ctx->bearer; in tipc_aead_decrypt_done()
973 struct tipc_aead *aead = rx_ctx->aead; in tipc_aead_decrypt_done()
988 kfree(rx_ctx); in tipc_aead_decrypt_done()
/linux/drivers/net/ethernet/intel/i40e/
A Di40e_virtchnl_pf.c687 struct i40e_hmc_obj_rxq rx_ctx; in i40e_config_vsi_rx_queue() local
694 rx_ctx.base = info->dma_ring_addr / 128; in i40e_config_vsi_rx_queue()
695 rx_ctx.qlen = info->ring_len; in i40e_config_vsi_rx_queue()
698 rx_ctx.hsplit_0 = I40E_RX_SPLIT_L2 | in i40e_config_vsi_rx_queue()
725 rx_ctx.rxmax = info->max_pkt_size; in i40e_config_vsi_rx_queue()
729 rx_ctx.rxmax += VLAN_HLEN; in i40e_config_vsi_rx_queue()
732 rx_ctx.dsize = 1; in i40e_config_vsi_rx_queue()
735 rx_ctx.lrxqthresh = 1; in i40e_config_vsi_rx_queue()
736 rx_ctx.crcstrip = 1; in i40e_config_vsi_rx_queue()
737 rx_ctx.prefena = 1; in i40e_config_vsi_rx_queue()
[all …]
A Di40e_main.c3326 struct i40e_hmc_obj_rxq rx_ctx; in i40e_configure_rx_ring() local
3334 memset(&rx_ctx, 0, sizeof(rx_ctx)); in i40e_configure_rx_ring()
3379 rx_ctx.qlen = ring->count; in i40e_configure_rx_ring()
3382 rx_ctx.dsize = 0; in i40e_configure_rx_ring()
3387 rx_ctx.hsplit_0 = 0; in i40e_configure_rx_ring()
3391 rx_ctx.lrxqthresh = 0; in i40e_configure_rx_ring()
3393 rx_ctx.lrxqthresh = 1; in i40e_configure_rx_ring()
3394 rx_ctx.crcstrip = 1; in i40e_configure_rx_ring()
3395 rx_ctx.l2tsel = 1; in i40e_configure_rx_ring()
3397 rx_ctx.showiv = 0; in i40e_configure_rx_ring()
[all …]
/linux/drivers/net/vmxnet3/
A Dvmxnet3_int.h297 struct vmxnet3_rx_ctx rx_ctx; member
A Dvmxnet3_drv.c1352 struct vmxnet3_rx_ctx *ctx = &rq->rx_ctx; in vmxnet3_rq_rx_complete()
1822 rq->rx_ctx.skb = NULL; in vmxnet3_rq_init()

Completed in 62 milliseconds