From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id A4FB1C433EF for ; Mon, 25 Oct 2021 06:28:33 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 89F7060EE3 for ; Mon, 25 Oct 2021 06:28:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230396AbhJYGax (ORCPT ); Mon, 25 Oct 2021 02:30:53 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42400 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230369AbhJYGax (ORCPT ); Mon, 25 Oct 2021 02:30:53 -0400 Received: from gandalf.ozlabs.org (gandalf.ozlabs.org [IPv6:2404:9400:2:0:216:3eff:fee2:21ea]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 794E3C061745; Sun, 24 Oct 2021 23:28:31 -0700 (PDT) Received: from authenticated.ozlabs.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail.ozlabs.org (Postfix) with ESMTPSA id 4Hd4ld2Lsrz4xbM; Mon, 25 Oct 2021 17:28:28 +1100 (AEDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ellerman.id.au; s=201909; t=1635143309; bh=UO+7LTZTfEH3+SFxoPjM7xKmJkD9pA6Voc4UYPRznJA=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=Ea69VD8965Yuq6XlOPvdP5TkWcECD/6tUkVRjODiIvBnHC2hPrs3MlG+JKEVDBbny +QOnB1UeABzgl3GQDtx9FjA21wd9q6pwEYcScx4bCNcrPF4xXmU56nENQjlhjxQHT8 sHid3NV9VpO5lRRVY3pGrPXsnEq4aZtCnR5FjZOVkwgFLygkLqtM09xuRHrAJ1BiQ2 lhskJB36QZcrS1EfDHVrTsh6DJ0HrMgbMrlIuWt+k0QyIvxcmmFwV0LQxwlR8TV+Je EeKYK6qUZfN884p2BiowXNIuQhiymzMvsqFB/uU44LqIheDsNSLHR3xBB14ObvKeYz s+6mfoOUuQkkw== From: Michael Ellerman To: Stephen Rothwell , Herbert Xu Cc: linux-crypto@vger.kernel.org, linux-kernel@vger.kernel.org, linux-next@vger.kernel.org Subject: Re: [PATCH] crypto: api - Export crypto_boot_test_finished In-Reply-To: <20210928151621.7aec3f34@canb.auug.org.au> References: <20210927143229.543749f4@canb.auug.org.au> <20210927112341.GA22483@gondor.apana.org.au> <20210928151621.7aec3f34@canb.auug.org.au> Date: Mon, 25 Oct 2021 17:28:24 +1100 Message-ID: <87sfwpbotz.fsf@mpe.ellerman.id.au> MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-crypto@vger.kernel.org Stephen Rothwell writes: > Hi Herbert, > > On Mon, 27 Sep 2021 19:23:42 +0800 Herbert Xu wrote: >> >> Oops, does this patch fix the problem? > > Yes, that fixes my build, thanks. > > Tested-by: Stephen Rothwell # ppc32 build It fixes the build, but modules_install still fails: $ git checkout adad556efcdd42a1d9e060cbe5f6161cccf1fa28 HEAD is now at adad556efcdd crypto: api - Fix built-in testing dependency failures $ git show e42dff467ee6 | patch -p1 # apply fixup patch patching file crypto/api.c $ make -s -j $(nproc) modules $ make -s modules_install depmod: ERROR: Cycle detected: crypto -> crypto_algapi -> crypto depmod: ERROR: Found 2 modules in dependency cycles! make: *** [Makefile:1801: modules_install] Error 1 cheers