Home
last modified time | relevance | path

Searched refs:offload_ctx (Results 1 – 2 of 2) sorted by relevance

/net/tls/
Dtls_device.c132 static void delete_all_records(struct tls_offload_context_tx *offload_ctx) in delete_all_records() argument
136 list_for_each_entry_safe(info, temp, &offload_ctx->records_list, list) { in delete_all_records()
141 offload_ctx->retransmit_hint = NULL; in delete_all_records()
257 struct tls_offload_context_tx *offload_ctx, in tls_push_record() argument
267 list_add_tail_rcu(&record->list, &offload_ctx->records_list); in tls_push_record()
268 offload_ctx->open_record = NULL; in tls_push_record()
277 sg_unmark_end(&offload_ctx->sg_tx_data[i]); in tls_push_record()
278 sg_set_page(&offload_ctx->sg_tx_data[i], skb_frag_page(frag), in tls_push_record()
283 sg_mark_end(&offload_ctx->sg_tx_data[record->num_frags - 1]); in tls_push_record()
286 return tls_push_sg(sk, ctx, offload_ctx->sg_tx_data, 0, flags); in tls_push_record()
[all …]
Dtls_device_fallback.c440 struct tls_offload_context_tx *offload_ctx, in tls_sw_fallback_init() argument
446 offload_ctx->aead_send = in tls_sw_fallback_init()
448 if (IS_ERR(offload_ctx->aead_send)) { in tls_sw_fallback_init()
449 rc = PTR_ERR(offload_ctx->aead_send); in tls_sw_fallback_init()
451 offload_ctx->aead_send = NULL; in tls_sw_fallback_init()
457 rc = crypto_aead_setkey(offload_ctx->aead_send, key, in tls_sw_fallback_init()
462 rc = crypto_aead_setauthsize(offload_ctx->aead_send, in tls_sw_fallback_init()
469 crypto_free_aead(offload_ctx->aead_send); in tls_sw_fallback_init()