From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 31C6C3093D3; Sun, 1 Mar 2026 03:14:53 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772334893; cv=none; b=DUqiBgyWyXglejntTPOhed4a4VpBRnZ2xL0ZHYw/fWscwcgCpGmuaWZLMvobrW2PQ3a2TLS1Ttjuy0FBwMRH7qbqnSJ7Ak0X2tGHUIVg1KVeIURUNlfZOgbtF2NdoU8kHikQ8aMUnuLf2BdfbkHlDTyrpIhqbN83etL9h+lfIUs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772334893; c=relaxed/simple; bh=cztyXyeNUtJ2suFuxPdzJBanyjZeXjZQOti7SdfAox8=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=sfgUAwSZwI2h0Vfx2NsR0P6BT6Ym7J6MBK0IH+QzJqEGW0bOBCh1U2tyeTRmlSRhClpK+jZzDw/dQERbezS5cOju7GPSqSQ+gEjEzksVAKZ01O6Q8460NzvjU6amilvSLAKRjek7jwpeTd7LsuvHJSkf8RP+sfhiWSpExtE0a2k= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=e5LPLrPF; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="e5LPLrPF" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 65EB0C19425; Sun, 1 Mar 2026 03:14:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1772334892; bh=cztyXyeNUtJ2suFuxPdzJBanyjZeXjZQOti7SdfAox8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=e5LPLrPFO0XYtOvyoaJ8UZ6IuA2cX9A8f/+qAYQgz2OJ4a255Z6ZMsC7n79xxGEoW Z+PBv2SuvNhdWzW8RDa0bXQbMiD3JGcgxX/rRQy2aeMu7H9l3YzwMlQO5Lwmi6jpeK xjCMsXILdBMZIR1XJe7CKk8yFal+m9UhEVo25KXxaHZy3IPYM+dIBEtbL+pVbvTrgT zwlQ5uRjzxabJps7y02wZ9e8eXZOos2cDJq/CPk3PBTLXZzhBI5S5dPhpclz8CEviZ Kiv0L6m+Z68eUaSmJ15w+503WoMy8yiEAURS7QOQ/eB1sGsy50RBM286NAbX/+MsTI TBaSm/36UugHg== Date: Sat, 28 Feb 2026 19:13:59 -0800 From: Eric Biggers To: Geert Uytterhoeven Cc: linux-crypto@vger.kernel.org, linux-kernel@vger.kernel.org, Ard Biesheuvel , "Jason A . Donenfeld" , Herbert Xu , kunit-dev@googlegroups.com, linux-kselftest@vger.kernel.org, Brendan Higgins , David Gow , Rae Moar , stable@vger.kernel.org Subject: Re: [PATCH] lib/crypto: tests: Depend on library options rather than selecting them Message-ID: <20260301031359.GA2271@sol> References: <20260226191749.39397-1-ebiggers@kernel.org> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: On Fri, Feb 27, 2026 at 09:32:50AM +0100, Geert Uytterhoeven wrote: > You can make those library symbols visible if KUNIT_ALL_TESTS, like > I suggested (after I sent my earlier reports to you) in [1], and like > Vladimir already did in [2]. Sure, but that would help only when KUNIT_ALL_TESTS is enabled. I think for now I'll just add a .kunitconfig file that enables everything needed to enable all the crypto libraries with KUnit tests. - Eric