Skip to content

Commit c404885

Browse files
author
CKI Backport Bot
committed
crypto: iaa - Fix incorrect return value in save_iaa_wq()
JIRA: https://issues.redhat.com/browse/RHEL-132475 commit 76ce17f Author: Zilin Guan <zilin@seu.edu.cn> Date: Sun Nov 9 14:56:48 2025 +0000 crypto: iaa - Fix incorrect return value in save_iaa_wq() The save_iaa_wq() function unconditionally returns 0, even when an error is encountered. This prevents the error code from being propagated to the caller. Fix this by returning the 'ret' variable, which holds the actual status of the operations within the function. Fixes: ea7a5cb ("crypto: iaa - Add Intel IAA Compression Accelerator crypto driver core") Signed-off-by: Zilin Guan <zilin@seu.edu.cn> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> Signed-off-by: CKI Backport Bot <cki-ci-bot+cki-gitlab-backport-bot@redhat.com>
1 parent 65fdc66 commit c404885

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/crypto/intel/iaa/iaa_crypto_main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -807,7 +807,7 @@ static int save_iaa_wq(struct idxd_wq *wq)
807807
if (!cpus_per_iaa)
808808
cpus_per_iaa = 1;
809809
out:
810-
return 0;
810+
return ret;
811811
}
812812

813813
static void remove_iaa_wq(struct idxd_wq *wq)

0 commit comments

Comments
 (0)