Lines Matching defs:held
77 /* Used for held command processing to determine state */
92 struct ccp_crypto_cmd *held = NULL, *tmp;
106 held = tmp;
134 return held;
140 struct ccp_crypto_cmd *held, *next, *backlog;
159 held = ccp_crypto_cmd_complete(crypto_cmd, &backlog);
176 while (held) {
180 held->cmd->flags |= CCP_CMD_MAY_BACKLOG;
181 ret = ccp_enqueue_cmd(held->cmd);
186 ctx = crypto_tfm_ctx_dma(held->req->tfm);
188 ret = ctx->complete(held->req, ret);
189 crypto_request_complete(held->req, ret);
191 next = ccp_crypto_cmd_complete(held, &backlog);
197 kfree(held);
198 held = next;