summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2016-04-28 09:13:03 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2016-04-28 09:13:03 +0800
commit6f6438975d6a1afb0f0ac18176ede4e667020db0 (patch)
tree11b7ee504210dd7ce7bb3318c1aabbf60759c717 /arch
parent79152e8d085fd64484afd473ef6830b45518acba (diff)
parent9e209fcfb804da262e38e5cd2e680c47a41f0f95 (diff)
downloadlwn-6f6438975d6a1afb0f0ac18176ede4e667020db0.tar.gz
lwn-6f6438975d6a1afb0f0ac18176ede4e667020db0.zip
Merge git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
Merge the crypto tree to pull in the qat adf_init_pf_wq change.
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/crypto/sha-mb/sha1_mb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/crypto/sha-mb/sha1_mb.c b/arch/x86/crypto/sha-mb/sha1_mb.c
index a8a0224fa0f8..081255cea1ee 100644
--- a/arch/x86/crypto/sha-mb/sha1_mb.c
+++ b/arch/x86/crypto/sha-mb/sha1_mb.c
@@ -453,10 +453,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();
}
}