[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <5684F139-A0DE-4A9A-B937-9DF5130E5BD7@sifive.com>
Date: Fri, 8 Dec 2023 12:18:39 +0800
From: Jerry Shih <jerry.shih@...ive.com>
To: Herbert Xu <herbert@...dor.apana.org.au>
Cc: Paul Walmsley <paul.walmsley@...ive.com>, palmer@...belt.com,
aou@...s.berkeley.edu, davem@...emloft.net,
conor.dooley@...rochip.com, ebiggers@...nel.org, ardb@...nel.org,
heiko@...ech.de, phoebe.chen@...ive.com, hongrong.hsu@...ive.com,
linux-riscv@...ts.infradead.org, linux-kernel@...r.kernel.org,
linux-crypto@...r.kernel.org
Subject: Re: [PATCH v2 05/13] crypto: simd - Update `walksize` in simd
skcipher
On Dec 8, 2023, at 12:05, Herbert Xu <herbert@...dor.apana.org.au> wrote:
> On Mon, Nov 27, 2023 at 03:06:55PM +0800, Jerry Shih wrote:
>> The `walksize` assignment is missed in simd skcipher.
>>
>> Signed-off-by: Jerry Shih <jerry.shih@...ive.com>
>> ---
>> crypto/cryptd.c | 1 +
>> crypto/simd.c | 1 +
>> 2 files changed, 2 insertions(+)
>>
>> diff --git a/crypto/cryptd.c b/crypto/cryptd.c
>> index bbcc368b6a55..253d13504ccb 100644
>> --- a/crypto/cryptd.c
>> +++ b/crypto/cryptd.c
>> @@ -405,6 +405,7 @@ static int cryptd_create_skcipher(struct crypto_template *tmpl,
>> (alg->base.cra_flags & CRYPTO_ALG_INTERNAL);
>> inst->alg.ivsize = crypto_skcipher_alg_ivsize(alg);
>> inst->alg.chunksize = crypto_skcipher_alg_chunksize(alg);
>> + inst->alg.walksize = crypto_skcipher_alg_walksize(alg);
>> inst->alg.min_keysize = crypto_skcipher_alg_min_keysize(alg);
>> inst->alg.max_keysize = crypto_skcipher_alg_max_keysize(alg);
>
> Sorry but this patch doesn't apply any more now that we have
> lskcipher.
The lskcipher is merged in kernel `6.7`. I will rebase the v3 series to `6.7` later.
Link: https://lore.kernel.org/all/20231205092801.1335-1-jerry.shih@sifive.com/
Some dependent patches are not applicable to `6.7` now. I will check the status for the
dependent patches.
-Jerry
Powered by blists - more mailing lists