Lines Matching full:held
80 /* Used for held command processing to determine state */
95 struct ccp_crypto_cmd *held = NULL, *tmp;
102 /* Held cmds will be after the current cmd in the queue so start
109 held = tmp;
137 return held;
143 struct ccp_crypto_cmd *held, *next, *backlog;
162 held = ccp_crypto_cmd_complete(crypto_cmd, &backlog);
179 while (held) {
183 held->cmd->flags |= CCP_CMD_MAY_BACKLOG;
184 ret = ccp_enqueue_cmd(held->cmd);
189 ctx = crypto_tfm_ctx_dma(held->req->tfm);
191 ret = ctx->complete(held->req, ret);
192 crypto_request_complete(held->req, ret);
194 next = ccp_crypto_cmd_complete(held, &backlog);
200 kfree(held);
201 held = next;