Commit 56861cbd authored by Herbert Xu's avatar Herbert Xu
Browse files

crypto: kpp - Add helper to set reqsize



The value of reqsize should only be changed through a helper.
To do so we need to first add a helper for this.

Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent bd71e0dc
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -50,6 +50,12 @@ static inline void *kpp_request_ctx(struct kpp_request *req)
	return req->__ctx;
}

static inline void kpp_set_reqsize(struct crypto_kpp *kpp,
				   unsigned int reqsize)
{
	crypto_kpp_alg(kpp)->reqsize = reqsize;
}

static inline void *kpp_tfm_ctx(struct crypto_kpp *tfm)
{
	return tfm->base.__crt_ctx;