From: Eric Biggers <ebiggers@kernel.org>
To: Gaurav Jain <gaurav.jain@nxp.com>
Cc: Herbert Xu <herbert@gondor.apana.org.au>,
"David S . Miller" <davem@davemloft.net>,
Horia Geanta <horia.geanta@nxp.com>,
Pankaj Gupta <pankaj.gupta@nxp.com>,
Varun Sethi <V.Sethi@nxp.com>,
Meenakshi Aggarwal <meenakshi.aggarwal@nxp.com>,
Aisheng Dong <aisheng.dong@nxp.com>,
Silvano Di Ninno <silvano.dininno@nxp.com>,
linux-crypto@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-imx@nxp.com
Subject: Re: [PATCH] crypto: caam/hash - fix asynchronous hash
Date: Tue, 16 Jan 2024 20:33:08 -0800 [thread overview]
Message-ID: <20240117043308.GA1137@sol.localdomain> (raw)
In-Reply-To: <20240116094405.744466-1-gaurav.jain@nxp.com>
On Tue, Jan 16, 2024 at 03:14:05PM +0530, Gaurav Jain wrote:
> ahash_alg->setkey is updated to ahash_nosetkey in ahash.c
> so updating the handling of setkey in caam driver.
>
> Fixes: 2f1f34c1bf7b ("crypto: ahash - optimize performance when wrapping shash")
> Signed-off-by: Gaurav Jain <gaurav.jain@nxp.com>
> ---
> drivers/crypto/caam/caamalg_qi2.c | 4 ++--
> drivers/crypto/caam/caamhash.c | 4 ++--
> 2 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/crypto/caam/caamalg_qi2.c b/drivers/crypto/caam/caamalg_qi2.c
> index a148ff1f0872..93a400e286b4 100644
> --- a/drivers/crypto/caam/caamalg_qi2.c
> +++ b/drivers/crypto/caam/caamalg_qi2.c
> @@ -4571,7 +4571,7 @@ static int caam_hash_cra_init(struct crypto_tfm *tfm)
>
> ctx->dev = caam_hash->dev;
>
> - if (alg->setkey) {
> + if (crypto_hash_alg_has_setkey(halg)) {
> ctx->adata.key_dma = dma_map_single_attrs(ctx->dev, ctx->key,
> ARRAY_SIZE(ctx->key),
> DMA_TO_DEVICE,
> @@ -4611,7 +4611,7 @@ static int caam_hash_cra_init(struct crypto_tfm *tfm)
> * For keyed hash algorithms shared descriptors
> * will be created later in setkey() callback
> */
> - return alg->setkey ? 0 : ahash_set_sh_desc(ahash);
> + return crypto_hash_alg_has_setkey(halg) ? 0 : ahash_set_sh_desc(ahash);
> }
>
> static void caam_hash_cra_exit(struct crypto_tfm *tfm)
> diff --git a/drivers/crypto/caam/caamhash.c b/drivers/crypto/caam/caamhash.c
> index 290c8500c247..4d50356b593c 100644
> --- a/drivers/crypto/caam/caamhash.c
> +++ b/drivers/crypto/caam/caamhash.c
> @@ -1804,7 +1804,7 @@ static int caam_hash_cra_init(struct crypto_tfm *tfm)
> } else {
> if (priv->era >= 6) {
> ctx->dir = DMA_BIDIRECTIONAL;
> - ctx->key_dir = alg->setkey ? DMA_TO_DEVICE : DMA_NONE;
> + ctx->key_dir = crypto_hash_alg_has_setkey(halg) ? DMA_TO_DEVICE : DMA_NONE;
> } else {
> ctx->dir = DMA_TO_DEVICE;
> ctx->key_dir = DMA_NONE;
> @@ -1862,7 +1862,7 @@ static int caam_hash_cra_init(struct crypto_tfm *tfm)
> * For keyed hash algorithms shared descriptors
> * will be created later in setkey() callback
> */
> - return alg->setkey ? 0 : ahash_set_sh_desc(ahash);
> + return crypto_hash_alg_has_setkey(halg) ? 0 : ahash_set_sh_desc(ahash);
> }
>
Thanks. Did you also consider putting something in struct caam_hash_alg (the
struct in which this driver embeds its ahash_alg structure) that indicates
whether the algorithm is an HMAC or not? Other drivers use that solution.
- Eric
next prev parent reply other threads:[~2024-01-17 4:33 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-01-16 9:44 [PATCH] crypto: caam/hash - fix asynchronous hash Gaurav Jain
2024-01-17 4:33 ` Eric Biggers [this message]
2024-01-17 10:48 ` [EXT] " Gaurav Jain
2024-01-18 3:43 ` Eric Biggers
2024-01-18 9:28 ` Gaurav Jain
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240117043308.GA1137@sol.localdomain \
--to=ebiggers@kernel.org \
--cc=V.Sethi@nxp.com \
--cc=aisheng.dong@nxp.com \
--cc=davem@davemloft.net \
--cc=gaurav.jain@nxp.com \
--cc=herbert@gondor.apana.org.au \
--cc=horia.geanta@nxp.com \
--cc=linux-crypto@vger.kernel.org \
--cc=linux-imx@nxp.com \
--cc=linux-kernel@vger.kernel.org \
--cc=meenakshi.aggarwal@nxp.com \
--cc=pankaj.gupta@nxp.com \
--cc=silvano.dininno@nxp.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox