mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-18 18:23:53 +08:00
crypto: cryptd - Remove reference to crypto_aead_crt
Pretty soon the crypto_aead encrypt/decrypt hooks will disappear as they are now always identical to those in struct aead_alg. This patch replaces the references to these hooks with the ones from aead_alg instead. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
376e0d697a
commit
ba3749a719
@ -709,7 +709,7 @@ static void cryptd_aead_encrypt(struct crypto_async_request *areq, int err)
|
|||||||
struct aead_request *req;
|
struct aead_request *req;
|
||||||
|
|
||||||
req = container_of(areq, struct aead_request, base);
|
req = container_of(areq, struct aead_request, base);
|
||||||
cryptd_aead_crypt(req, child, err, crypto_aead_crt(child)->encrypt);
|
cryptd_aead_crypt(req, child, err, crypto_aead_alg(child)->encrypt);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void cryptd_aead_decrypt(struct crypto_async_request *areq, int err)
|
static void cryptd_aead_decrypt(struct crypto_async_request *areq, int err)
|
||||||
@ -719,7 +719,7 @@ static void cryptd_aead_decrypt(struct crypto_async_request *areq, int err)
|
|||||||
struct aead_request *req;
|
struct aead_request *req;
|
||||||
|
|
||||||
req = container_of(areq, struct aead_request, base);
|
req = container_of(areq, struct aead_request, base);
|
||||||
cryptd_aead_crypt(req, child, err, crypto_aead_crt(child)->decrypt);
|
cryptd_aead_crypt(req, child, err, crypto_aead_alg(child)->decrypt);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int cryptd_aead_enqueue(struct aead_request *req,
|
static int cryptd_aead_enqueue(struct aead_request *req,
|
||||||
|
Loading…
Reference in New Issue
Block a user