Message ID | ZJlmaarLRYZcs+c3@gondor.apana.org.au |
---|---|
State | Accepted |
Commit | 767cfee8368f43c6d6c58cdf8c2d143a027fa55f |
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;