Message ID | ZJlmaarLRYZcs+c3@gondor.apana.org.au (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | crypto: akcipher - Set request tfm on sync path | expand |
diff --git a/crypto/akcipher.c b/crypto/akcipher.c index 152cfba1346c..8ffd31c44cf6 100644 --- a/crypto/akcipher.c +++ b/crypto/akcipher.c @@ -207,6 +207,7 @@ int crypto_akcipher_sync_prep(struct crypto_akcipher_sync_data *data) return -ENOMEM; data->req = req; + akcipher_request_set_tfm(req, data->tfm); buf = (u8 *)(req + 1) + reqsize; data->buf = buf;