Lines Matching defs:cipher_req
153 struct skcipher_request *cipher_req = call->cipher_req;
155 if (!cipher_req) {
156 cipher_req = skcipher_request_alloc(tfm, GFP_NOFS);
157 if (!cipher_req)
159 call->cipher_req = cipher_req;
162 return cipher_req;
170 if (call->cipher_req)
171 skcipher_request_free(call->cipher_req);
172 call->cipher_req = NULL;