Skip to content

Commit

Permalink
crypto: sha512-mb - fix ctx pointer
Browse files Browse the repository at this point in the history
1. fix ctx pointer
Use req_ctx which is the ctx for the next job that have
been completed in the lanes instead of the first
completed job rctx, whose completion could have been
called and released.

Signed-off-by: Xiaodong Liu <xiaodong.liu@intel.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
  • Loading branch information
Xiaodong Liu authored and Herbert Xu committed Aug 16, 2016
1 parent 172b1d6 commit e67479b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/x86/crypto/sha512-mb/sha512_mb.c
Original file line number Diff line number Diff line change
Expand Up @@ -497,10 +497,10 @@ static int sha_complete_job(struct mcryptd_hash_request_ctx *rctx,

req = cast_mcryptd_ctx_to_req(req_ctx);
if (irqs_disabled())
rctx->complete(&req->base, ret);
req_ctx->complete(&req->base, ret);
else {
local_bh_disable();
rctx->complete(&req->base, ret);
req_ctx->complete(&req->base, ret);
local_bh_enable();
}
}
Expand Down

0 comments on commit e67479b

Please sign in to comment.