On Sat, 2014-06-21 at 01:57 +0800, Herbert Xu wrote:
> 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.
This bit should have been moved to mcryptd.c. Will fix and repost.
Tim
--
To unsubscribe from this list: send the line "unsubscribe linux-crypto" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html