From patchwork Fri Jan 17 11:01:36 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Jason A. Donenfeld" X-Patchwork-Id: 11338785 X-Patchwork-Delegate: herbert@gondor.apana.org.au Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 727BD138D for ; Fri, 17 Jan 2020 11:01:43 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 511EA2072B for ; Fri, 17 Jan 2020 11:01:43 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=zx2c4.com header.i=@zx2c4.com header.b="MK10FS0M" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726362AbgAQLBm (ORCPT ); Fri, 17 Jan 2020 06:01:42 -0500 Received: from frisell.zx2c4.com ([192.95.5.64]:42201 "EHLO frisell.zx2c4.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726196AbgAQLBm (ORCPT ); Fri, 17 Jan 2020 06:01:42 -0500 Received: by frisell.zx2c4.com (ZX2C4 Mail Server) with ESMTP id 2f5b5e51; Fri, 17 Jan 2020 10:01:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=zx2c4.com; h=from:to:cc :subject:date:message-id:mime-version:content-transfer-encoding; s=mail; bh=nar6Om/idPUqWI6s6Dh3+1Za0d4=; b=MK10FS0MsZcupleeLSd+ yX3ji/om+3Suo0ZpFjPCjJEKGBM33c6UPHQW/k8Qr2tczrkBb4I4TGhffGX811VN 3s6jw8Ptq2bLJb2eeMmSjWhDuB/rPryjEtN5TiwQ4HqSMd69SoeQ3H50nNrqN2OH 3TvToiey6KSk5RG29vnPbpoA+HvlumdhcibiIGusJyHRfT5QLPXgc+hKBe+EMuha 4W8Hd4CCx4gH3+mCe30D5M5kE+4k+eUXWyzfFGMsQ14o3BfXMD6h+A1i4BiMVptS WyYNdACjNLZCC3S4G8/nIr+/6bIFlVV6eoKjiuTuttWU3Xme/4Vr6k7j2g4Rp2WK 2g== Received: by frisell.zx2c4.com (ZX2C4 Mail Server) with ESMTPSA id b032fc21 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO); Fri, 17 Jan 2020 10:01:16 +0000 (UTC) From: "Jason A. Donenfeld" To: linux-crypto@vger.kernel.org Cc: "Jason A. Donenfeld" Subject: [PATCH] crypto: allow tests to be disabled when manager is disabled Date: Fri, 17 Jan 2020 12:01:36 +0100 Message-Id: <20200117110136.305162-1-Jason@zx2c4.com> MIME-Version: 1.0 Sender: linux-crypto-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-crypto@vger.kernel.org The library code uses CRYPTO_MANAGER_DISABLE_TESTS to conditionalize its tests, but the library code can also exist without CRYPTO_MANAGER. That means on minimal configs, the test code winds up being built with no way to disable it. Signed-off-by: Jason A. Donenfeld --- crypto/Kconfig | 4 ---- 1 file changed, 4 deletions(-) diff --git a/crypto/Kconfig b/crypto/Kconfig index 5575d48473bd..a335126fa301 100644 --- a/crypto/Kconfig +++ b/crypto/Kconfig @@ -136,8 +136,6 @@ config CRYPTO_USER Userspace configuration for cryptographic instantiations such as cbc(aes). -if CRYPTO_MANAGER2 - config CRYPTO_MANAGER_DISABLE_TESTS bool "Disable run-time self tests" default y @@ -155,8 +153,6 @@ config CRYPTO_MANAGER_EXTRA_TESTS This is intended for developer use only, as these tests take much longer to run than the normal self tests. -endif # if CRYPTO_MANAGER2 - config CRYPTO_GF128MUL tristate