From: Kent Overstreet Date: Mon, 6 May 2024 12:40:46 +0000 (-0400) Subject: bcachefs: Add missing skcipher_request_set_callback() call X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=88ab10186c44d0a8b90842beab8648b5fd14432d;p=linux.git bcachefs: Add missing skcipher_request_set_callback() call Signed-off-by: Kent Overstreet --- diff --git a/fs/bcachefs/checksum.c b/fs/bcachefs/checksum.c index 7ed779b411f61..088fd2e7bdf12 100644 --- a/fs/bcachefs/checksum.c +++ b/fs/bcachefs/checksum.c @@ -102,6 +102,7 @@ static inline int do_encrypt_sg(struct crypto_sync_skcipher *tfm, int ret; skcipher_request_set_sync_tfm(req, tfm); + skcipher_request_set_callback(req, 0, NULL, NULL); skcipher_request_set_crypt(req, sg, sg, len, nonce.d); ret = crypto_skcipher_encrypt(req);