Home
last modified time | relevance | path

Searched refs:siw_crypto_shash (Results 1 – 3 of 3) sorted by relevance

/linux-6.6.21/drivers/infiniband/sw/siw/
Dsiw_main.c62 struct crypto_shash *siw_crypto_shash; variable
533 siw_crypto_shash = crypto_alloc_shash("crc32c", 0, 0); in siw_init_module()
534 if (IS_ERR(siw_crypto_shash)) { in siw_init_module()
536 PTR_ERR(siw_crypto_shash)); in siw_init_module()
537 siw_crypto_shash = NULL; in siw_init_module()
555 if (siw_crypto_shash) in siw_init_module()
556 crypto_free_shash(siw_crypto_shash); in siw_init_module()
578 if (siw_crypto_shash) in siw_exit_module()
579 crypto_free_shash(siw_crypto_shash); in siw_exit_module()
Dsiw_qp.c235 if (siw_crypto_shash == NULL) in siw_qp_enable_crc()
238 size = crypto_shash_descsize(siw_crypto_shash) + in siw_qp_enable_crc()
250 c_tx->mpa_crc_hd->tfm = siw_crypto_shash; in siw_qp_enable_crc()
251 c_rx->mpa_crc_hd->tfm = siw_crypto_shash; in siw_qp_enable_crc()
Dsiw.h504 extern struct crypto_shash *siw_crypto_shash;