Lines Matching refs:held
77 /* Used for held command processing to determine state */
99 struct ccp_crypto_cmd *held = NULL, *tmp;
113 held = tmp;
141 return held;
147 struct ccp_crypto_cmd *held, *next, *backlog;
166 held = ccp_crypto_cmd_complete(crypto_cmd, &backlog);
183 while (held) {
187 held->cmd->flags |= CCP_CMD_MAY_BACKLOG;
188 ret = ccp_enqueue_cmd(held->cmd);
193 ctx = crypto_tfm_ctx(held->req->tfm);
195 ret = ctx->complete(held->req, ret);
196 held->req->complete(held->req, ret);
198 next = ccp_crypto_cmd_complete(held, &backlog);
204 kfree(held);
205 held = next;