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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id D1D23C433F5 for ; Mon, 28 Mar 2022 20:54:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1345697AbiC1U4U (ORCPT ); Mon, 28 Mar 2022 16:56:20 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51482 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230362AbiC1U4R (ORCPT ); Mon, 28 Mar 2022 16:56:17 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 16E1568FB2; Mon, 28 Mar 2022 13:54:33 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 56988612A0; Mon, 28 Mar 2022 20:54:33 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4DC8BC340ED; Mon, 28 Mar 2022 20:54:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1648500872; bh=4/RYB9NtJw2jrAOOoPaFvzieYpWUoxCWQgw03Pg2Bh0=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=dhyThEmLZ9m8pkkngN7WF8afIJXYtAcAjxJ7H1BfeKx+avcBkMHcNIX27isEai7Jk 4hGCA2cTImEV4BfvuarXdHskZZgHTfb38Jtjw/9gNydILjKIRPIY4ZqcJ+IgtY9Jlj Ww6/m3yOmMZnvOSZVZxErNgGf0Ou8OU6Jv36tLoEAbbIz4Uf+/TEDSuYhbeYkO0Q+s 0Sm4n0ZM+G+gBtDoYfKDoy5mtHhH9pngG2sg5+U6QdgXQoAb+UiYF8WMXHa2cdJk/R apCqpNLgIDza3aTB9s/DH4KaNWEnBx0Fwa5b5LIVh+T5ciUwWq3cwPQg6+p7OW3Uja Uo9anRvxg51uA== Date: Mon, 28 Mar 2022 13:54:30 -0700 From: Jakub Kicinski To: Naresh Kamboju Cc: davem@davemloft.net, pabeni@redhat.com, shuah@kernel.org, linux-kselftest@vger.kernel.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, Linux Kernel Functional Testing Subject: Re: [PATCH] selftests: net: Add tls config dependency for tls selftests Message-ID: <20220328135430.2ad39326@kernel.org> In-Reply-To: <20220328134650.72265-1-naresh.kamboju@linaro.org> References: <20220328134650.72265-1-naresh.kamboju@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 28 Mar 2022 19:16:50 +0530 Naresh Kamboju wrote: > selftest net tls test cases need TLS=m without this the test hangs. The test is supposed to fall back / skip cleanly when TLS is not built. That's useful to test compatibility with TCP. It'd be great if you could reply to questions I asked you on your report instead of sending out incorrect patches. > Enabling config TLS solves this problem and runs to complete. > - CONFIG_TLS=m > > Reported-by: Linux Kernel Functional Testing > Signed-off-by: Naresh Kamboju