Re: [PATCH v2 4/4] crypto: testmgr - Add a test case for import()/export()

From: Rui Wang
Date: Tue Feb 02 2016 - 09:36:39 EST


On Mon, Feb 1, 2016 4:22 PM Herbert Xu wrote:
>
> On Wed, Jan 27, 2016 at 05:08:38PM +0800, Rui Wang wrote:
> >
> > diff --git a/crypto/testmgr.h b/crypto/testmgr.h index
> > da0a8fd..451e7eb 100644
> > --- a/crypto/testmgr.h
> > +++ b/crypto/testmgr.h
> > @@ -44,6 +44,7 @@ struct hash_testvec {
> > unsigned short psize;
> > unsigned char np;
> > unsigned char ksize;
> > + unsigned char partial;
>
> Why not make it unconditional?
>

I initially made it unconditional, but then I found that it can easily
hang the machine during boot due to any import/export bug in any of
the hash drivers. So I used this .partial flag to guard against this
risk. Only when an author is confident that his driver can do this
test, should he add this flag. What do you think?

Thanks
Rui