Lines Matching refs:cryptd_tfm
42 struct cryptd_ahash *cryptd_tfm;
204 struct cryptd_ahash *cryptd_tfm = ctx->cryptd_tfm;
206 struct crypto_shash *child = cryptd_ahash_child(cryptd_tfm);
217 struct cryptd_ahash *cryptd_tfm = ctx->cryptd_tfm;
220 (in_atomic() && cryptd_ahash_queued(cryptd_tfm))) {
222 ahash_request_set_tfm(cryptd_req, &cryptd_tfm->base);
235 struct cryptd_ahash *cryptd_tfm = ctx->cryptd_tfm;
238 (in_atomic() && cryptd_ahash_queued(cryptd_tfm))) {
240 ahash_request_set_tfm(cryptd_req, &cryptd_tfm->base);
253 struct cryptd_ahash *cryptd_tfm = ctx->cryptd_tfm;
256 (in_atomic() && cryptd_ahash_queued(cryptd_tfm))) {
258 ahash_request_set_tfm(cryptd_req, &cryptd_tfm->base);
262 struct crypto_shash *child = cryptd_ahash_child(cryptd_tfm);
276 desc->tfm = cryptd_ahash_child(ctx->cryptd_tfm);
293 struct crypto_ahash *child = &ctx->cryptd_tfm->base;
303 struct cryptd_ahash *cryptd_tfm;
306 cryptd_tfm = cryptd_alloc_ahash("ghash-ce-sync", 0, 0);
307 if (IS_ERR(cryptd_tfm))
308 return PTR_ERR(cryptd_tfm);
309 ctx->cryptd_tfm = cryptd_tfm;
312 crypto_ahash_reqsize(&cryptd_tfm->base));
321 cryptd_free_ahash(ctx->cryptd_tfm);