[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20081201112225.GA20659@gondor.apana.org.au>
Date: Mon, 1 Dec 2008 19:22:25 +0800
From: Herbert Xu <herbert@...dor.apana.org.au>
To: Steffen Klassert <steffen.klassert@...unet.com>
Cc: netdev@...r.kernel.org, davem@...emloft.net,
klassert@...hematik.tu-chemnitz.de
Subject: Re: [RFC PATCH 3/5] crypto: add possibility to force sync transform
On Mon, Dec 01, 2008 at 08:19:03AM +0100, Steffen Klassert wrote:
.
> diff --git a/crypto/chainiv.c b/crypto/chainiv.c
> index 7c37a49..2079fdd 100644
> --- a/crypto/chainiv.c
> +++ b/crypto/chainiv.c
> @@ -168,8 +168,12 @@ static int async_chainiv_givencrypt_tail(struct skcipher_givcrypt_request *req)
> memcpy(subreq->info, ctx->iv, ivsize);
>
> ctx->err = crypto_ablkcipher_encrypt(subreq);
> - if (ctx->err)
> - goto out;
> + if (ctx->err) {
> + if (ablkcipher_request_flags(&req->creq) & CRYPTO_TFM_REQ_FORCE_SYNC)
If you want sync algorithms, you should request for that at alloc
time:
crypto_alloc_ablkcipher("foo", 0, CRYPTO_ALG_ASYNC);
Doing so at run-time is going to end in tears.
Cheers,
--
Visit Openswan at http://www.openswan.org/
Email: Herbert Xu ~{PmV>HI~} <herbert@...dor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists