Lines Matching refs:subreq
487 SKCIPHER_REQUEST_ON_STACK(subreq, child); in cryptd_skcipher_encrypt()
492 skcipher_request_set_tfm(subreq, child); in cryptd_skcipher_encrypt()
493 skcipher_request_set_callback(subreq, CRYPTO_TFM_REQ_MAY_SLEEP, in cryptd_skcipher_encrypt()
495 skcipher_request_set_crypt(subreq, req->src, req->dst, req->cryptlen, in cryptd_skcipher_encrypt()
498 err = crypto_skcipher_encrypt(subreq); in cryptd_skcipher_encrypt()
499 skcipher_request_zero(subreq); in cryptd_skcipher_encrypt()
515 SKCIPHER_REQUEST_ON_STACK(subreq, child); in cryptd_skcipher_decrypt()
520 skcipher_request_set_tfm(subreq, child); in cryptd_skcipher_decrypt()
521 skcipher_request_set_callback(subreq, CRYPTO_TFM_REQ_MAY_SLEEP, in cryptd_skcipher_decrypt()
523 skcipher_request_set_crypt(subreq, req->src, req->dst, req->cryptlen, in cryptd_skcipher_decrypt()
526 err = crypto_skcipher_decrypt(subreq); in cryptd_skcipher_decrypt()
527 skcipher_request_zero(subreq); in cryptd_skcipher_decrypt()