Symbol: crypt_ctx
arch/x86/crypto/aesni-intel_glue.c
370
err = aes_set_key_common(&ctx->crypt_ctx, key, keylen);
arch/x86/crypto/aesni-intel_glue.c
418
(*crypt_func)(&ctx->crypt_ctx,
arch/x86/crypto/aesni-intel_glue.c
443
(*crypt_func)(&ctx->crypt_ctx, walk.src.virt.addr, walk.dst.virt.addr,
arch/x86/crypto/aesni-intel_glue.c
474
(*crypt_func)(&ctx->crypt_ctx, sg_virt(req->src),
arch/x86/crypto/aesni-intel_glue.c
50
struct crypto_aes_ctx crypt_ctx AESNI_ALIGN_ATTR;
block/blk-crypto-fallback.c
41
struct bio_crypt_ctx crypt_ctx;
block/blk-crypto-fallback.c
426
struct bio_crypt_ctx *bc = &f_ctx->crypt_ctx;
block/blk-crypto-fallback.c
517
f_ctx->crypt_ctx = *bc;
block/blk-crypto-internal.h
174
memcpy(rq->crypt_ctx->bc_dun, bio->bi_crypt_context->bc_dun,
block/blk-crypto-internal.h
175
sizeof(rq->crypt_ctx->bc_dun));
block/blk-crypto-internal.h
40
return bio_crypt_ctx_mergeable(req->crypt_ctx, blk_rq_bytes(req),
block/blk-crypto-internal.h
48
bio->bi_iter.bi_size, req->crypt_ctx);
block/blk-crypto-internal.h
54
return bio_crypt_ctx_mergeable(req->crypt_ctx, blk_rq_bytes(req),
block/blk-crypto-internal.h
55
next->crypt_ctx);
block/blk-crypto-internal.h
60
rq->crypt_ctx = NULL;
block/blk-crypto-internal.h
66
return rq->crypt_ctx;
block/blk-crypto.c
205
return bio_crypt_ctx_compatible(rq->crypt_ctx, bio->bi_crypt_context);
block/blk-crypto.c
225
rq->crypt_ctx->bc_key,
block/blk-crypto.c
241
mempool_free(rq->crypt_ctx, bio_crypt_ctx_pool);
block/blk-crypto.c
242
rq->crypt_ctx = NULL;
block/blk-crypto.c
284
if (!rq->crypt_ctx) {
block/blk-crypto.c
285
rq->crypt_ctx = mempool_alloc(bio_crypt_ctx_pool, gfp_mask);
block/blk-crypto.c
286
if (!rq->crypt_ctx)
block/blk-crypto.c
289
*rq->crypt_ctx = *bio->bi_crypt_context;
drivers/mmc/core/crypto.c
35
if (!req->crypt_ctx)
drivers/mmc/core/crypto.c
38
mrq->crypto_ctx = req->crypt_ctx;
drivers/scsi/scsi_error.c
1135
ses->rq_crypt_ctx = rq->crypt_ctx;
drivers/scsi/scsi_error.c
1138
rq->crypt_ctx = NULL;
drivers/scsi/scsi_error.c
1177
rq->crypt_ctx = ses->rq_crypt_ctx;
drivers/ufs/core/ufshcd-crypto.h
25
lrbp->data_unit_num = rq->crypt_ctx->bc_dun[0];
drivers/ufs/core/ufshcd-crypto.h
43
const struct bio_crypt_ctx *crypt_ctx = scsi_cmd_to_rq(cmd)->crypt_ctx;
drivers/ufs/core/ufshcd-crypto.h
46
if (crypt_ctx && hba->vops && hba->vops->fill_crypto_prdt)
drivers/ufs/core/ufshcd-crypto.h
47
return hba->vops->fill_crypto_prdt(hba, crypt_ctx,
drivers/ufs/core/ufshcd-crypto.h
61
if (!(scsi_cmd_to_rq(cmd)->crypt_ctx))
drivers/ufs/host/ufs-exynos.c
1392
const struct bio_crypt_ctx *crypt_ctx,
drivers/ufs/host/ufs-exynos.c
1396
const u8 *enckey = crypt_ctx->bc_key->bytes;
drivers/ufs/host/ufs-exynos.c
1398
u64 dun_lo = crypt_ctx->bc_dun[0];
drivers/ufs/host/ufs-exynos.c
1399
u64 dun_hi = crypt_ctx->bc_dun[1];
include/ufs/ufshcd.h
371
const struct bio_crypt_ctx *crypt_ctx,