From: Ovidiu Panait Date: Sun, 24 Dec 2023 08:21:43 +0000 (+0200) Subject: crypto: sahara - remove error message for bad aes request size X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=a7dc2d5c05548f16600ff3b2cf9878fc4d929fb9;p=linux.git crypto: sahara - remove error message for bad aes request size Do not spam the kernel log with unnecessary error messages when processing requests that aren't a multiple of AES block size. Signed-off-by: Ovidiu Panait Signed-off-by: Herbert Xu --- diff --git a/drivers/crypto/sahara.c b/drivers/crypto/sahara.c index fdae8c7e7c789..886395603a3a7 100644 --- a/drivers/crypto/sahara.c +++ b/drivers/crypto/sahara.c @@ -682,11 +682,8 @@ static int sahara_aes_crypt(struct skcipher_request *req, unsigned long mode) dev_dbg(dev->device, "nbytes: %d, enc: %d, cbc: %d\n", req->cryptlen, !!(mode & FLAGS_ENCRYPT), !!(mode & FLAGS_CBC)); - if (!IS_ALIGNED(req->cryptlen, AES_BLOCK_SIZE)) { - dev_err(dev->device, - "request size is not exact amount of AES blocks\n"); + if (!IS_ALIGNED(req->cryptlen, AES_BLOCK_SIZE)) return -EINVAL; - } rctx->mode = mode;