On Sun, Nov 13, 2022 at 04:12:34PM -0800, Eric Biggers wrote: > diff --git a/crypto/algboss.c b/crypto/algboss.c > index eb5fe84efb83e..13d37320a66eb 100644 > --- a/crypto/algboss.c > +++ b/crypto/algboss.c > @@ -181,12 +181,8 @@ static int cryptomgr_test(void *data) > goto skiptest; > #endif > > - if (type & CRYPTO_ALG_TESTED) > - goto skiptest; > - > err = alg_test(param->driver, param->alg, type, CRYPTO_ALG_TESTED); > > -skiptest: > crypto_alg_tested(param->driver, err); Ard pointed out that there's a bisection hazard here, since this patch deletes the skiptest label, but the last goto to it isn't deleted until patch 6. Sorry about that. Herbert, do you want to fix this by rebasing, or is it too late? - Eric