On Wed, Jun 11, 2014 at 02:03:45PM -0700, Tim Chen wrote: > > diff --git a/crypto/shash.c b/crypto/shash.c > index 929058a..234ece0 100644 > --- a/crypto/shash.c > +++ b/crypto/shash.c > @@ -271,6 +271,18 @@ static int shash_async_finup(struct ahash_request *req) > return shash_ahash_finup(req, desc); > } > > +int shash_ahash_mcryptd_digest(struct ahash_request *req, > + struct shash_desc *desc) > +{ > + int err; > + > + err = crypto_shash_init(desc) ?: > + shash_ahash_mcryptd_finup(req, desc); > + > + return err; > +} > +EXPORT_SYMBOL_GPL(shash_ahash_mcryptd_digest); > + This bit causes your patch to not build for me. Please fix and resubmit. Thanks, -- Email: Herbert Xu <herbert@xxxxxxxxxxxxxxxxxxx> 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 linux-crypto" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html