2023-12-18 16:47:57

by Ovidiu Panait

[permalink] [raw]
Subject: [PATCH 6/7] crypto: sun8i-ce - Use helper to set reqsize

From: Ovidiu Panait <[email protected]>

The value of reqsize must only be changed through the helper.

Signed-off-by: Ovidiu Panait <[email protected]>
---
Cc: Corentin Labbe <[email protected]>
Cc: Chen-Yu Tsai <[email protected]>
Cc: Jernej Skrabec <[email protected]>
Cc: Samuel Holland <[email protected]>
Cc: [email protected]
Cc: [email protected]

drivers/crypto/allwinner/sun8i-ce/sun8i-ce-cipher.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/crypto/allwinner/sun8i-ce/sun8i-ce-cipher.c b/drivers/crypto/allwinner/sun8i-ce/sun8i-ce-cipher.c
index 8d4c42863a62..1262a7773ef3 100644
--- a/drivers/crypto/allwinner/sun8i-ce/sun8i-ce-cipher.c
+++ b/drivers/crypto/allwinner/sun8i-ce/sun8i-ce-cipher.c
@@ -431,8 +431,8 @@ int sun8i_ce_cipher_init(struct crypto_tfm *tfm)
return PTR_ERR(op->fallback_tfm);
}

- sktfm->reqsize = sizeof(struct sun8i_cipher_req_ctx) +
- crypto_skcipher_reqsize(op->fallback_tfm);
+ crypto_skcipher_set_reqsize(sktfm, sizeof(struct sun8i_cipher_req_ctx) +
+ crypto_skcipher_reqsize(op->fallback_tfm));

memcpy(algt->fbname,
crypto_tfm_alg_driver_name(crypto_skcipher_tfm(op->fallback_tfm)),
--
2.34.1



2023-12-18 19:57:34

by Jernej Škrabec

[permalink] [raw]
Subject: Re: [PATCH 6/7] crypto: sun8i-ce - Use helper to set reqsize

Dne ponedeljek, 18. december 2023 ob 17:46:48 CET je [email protected] napisal(a):
> From: Ovidiu Panait <[email protected]>
>
> The value of reqsize must only be changed through the helper.
>
> Signed-off-by: Ovidiu Panait <[email protected]>

Acked-by: Jernej Skrabec <[email protected]>

Best regards,
Jernej