Subject: [patch] crypto: retrieve private ctx aligned

This is function does the same thing for ablkcipher that is done for
blkcipher by crypto_blkcipher_ctx_aligned(): it returns an aligned
address of the private ctx.

Signed-off-by: Sebastian Siewior <[email protected]>
--- a/include/crypto/algapi.h
+++ b/include/crypto/algapi.h
@@ -160,6 +160,11 @@ static inline void *crypto_ablkcipher_ct
return crypto_tfm_ctx(&tfm->base);
}

+static inline void *crypto_ablkcipher_ctx_aligned(struct crypto_ablkcipher *tfm)
+{
+ return crypto_tfm_ctx_aligned(&tfm->base);
+}
+
static inline struct crypto_blkcipher *crypto_spawn_blkcipher(
struct crypto_spawn *spawn)
{


2007-08-02 12:44:41

by Herbert Xu

[permalink] [raw]
Subject: Re: [patch] crypto: retrieve private ctx aligned

On Thu, Aug 02, 2007 at 09:47:58AM +0200, Sebastian Siewior wrote:
> This is function does the same thing for ablkcipher that is done for
> blkcipher by crypto_blkcipher_ctx_aligned(): it returns an aligned
> address of the private ctx.
>
> Signed-off-by: Sebastian Siewior <[email protected]>

Patch applied. Thanks Sebastian!
--
Visit Openswan at http://www.openswan.org/
Email: Herbert Xu ~{PmV>HI~} <[email protected]>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt