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 AB74EC0015E for ; Tue, 25 Jul 2023 21:08:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229825AbjGYVI0 (ORCPT ); Tue, 25 Jul 2023 17:08:26 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51742 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229804AbjGYVIZ (ORCPT ); Tue, 25 Jul 2023 17:08:25 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D0C6A19A4 for ; Tue, 25 Jul 2023 14:08:24 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 6791B618E8 for ; Tue, 25 Jul 2023 21:08:24 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id A928FC433C8; Tue, 25 Jul 2023 21:08:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1690319303; bh=mFP4UYco3gOD5VKyaE0YzA7kaUtVPHKmet4Fc4mG02w=; h=Date:From:To:cc:Subject:In-Reply-To:References:From; b=KJ8lTP6dOcczngeRimNEKGAjKevSsSSrB4XmesB0YrYxMZrDgFiSqzxRMJGxYq0eG OCBFwq8IFfA4315z9VhHz+SpV8vl500TQP+L5GYKvt5dOHxxJ/79SV+FbXXkxbSXi2 fQIhx3yJ4aWWg5P79YYEszk17WSRmv+HnIcRVPfJMYWdv3yAcfuyA9AqeF8s1D8MU0 DOiGLdNNwCUyDphpBZ68MZ43v1qh7XyB4LYWP9f2CidFuwkaWjGM6L24ZMkWU66JpW BbAPKy9x+kJ0+S+ZfmINbU723wzIVGPXff3wsSjsUQ00kHHBoOpgp6XUI3aBBxAVbH nixNZGC6D5sUQ== Date: Tue, 25 Jul 2023 14:08:22 -0700 (PDT) From: Mat Martineau To: Jakub Kicinski , Paolo Abeni cc: Greg KH , Matthieu Baerts , "David S. Miller" , Eric Dumazet , Geliang Tang , netdev@vger.kernel.org, mptcp@lists.linux.dev, stable@vger.kernel.org Subject: Re: [PATCH net 1/2] selftests: mptcp: join: only check for ip6tables if needed In-Reply-To: <2023072521-surfboard-starry-fbe8@gregkh> Message-ID: <1388a7a1-dbad-1653-d9eb-150fdd1ec746@kernel.org> References: <20230725-send-net-20230725-v1-0-6f60fe7137a9@kernel.org> <20230725-send-net-20230725-v1-1-6f60fe7137a9@kernel.org> <2023072521-surfboard-starry-fbe8@gregkh> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org On Tue, 25 Jul 2023, Greg KH wrote: > On Tue, Jul 25, 2023 at 11:34:55AM -0700, Mat Martineau wrote: >> From: Matthieu Baerts >> >> If 'iptables-legacy' is available, 'ip6tables-legacy' command will be >> used instead of 'ip6tables'. So no need to look if 'ip6tables' is >> available in this case. >> >> Fixes: 0c4cd3f86a40 ("selftests: mptcp: join: use 'iptables-legacy' if available") >> Acked-by: Paolo Abeni >> Signed-off-by: Matthieu Baerts >> Signed-off-by: Mat Martineau >> --- >> tools/testing/selftests/net/mptcp/mptcp_join.sh | 4 +--- >> 1 file changed, 1 insertion(+), 3 deletions(-) >> >> diff --git a/tools/testing/selftests/net/mptcp/mptcp_join.sh b/tools/testing/selftests/net/mptcp/mptcp_join.sh >> index e6c9d5451c5b..3c2096ac97ef 100755 >> --- a/tools/testing/selftests/net/mptcp/mptcp_join.sh >> +++ b/tools/testing/selftests/net/mptcp/mptcp_join.sh >> @@ -162,9 +162,7 @@ check_tools() >> elif ! iptables -V &> /dev/null; then >> echo "SKIP: Could not run all tests without iptables tool" >> exit $ksft_skip >> - fi >> - >> - if ! ip6tables -V &> /dev/null; then >> + elif ! ip6tables -V &> /dev/null; then >> echo "SKIP: Could not run all tests without ip6tables tool" >> exit $ksft_skip >> fi >> >> -- >> 2.41.0 >> > > > > This is not the correct way to submit patches for inclusion in the > stable kernel tree. Please read: > https://www.kernel.org/doc/html/latest/process/stable-kernel-rules.html > for how to do this properly. > > Ugh, I did forget to add the "Cc: stable@vger.kernel.org" tag in the commit messages for this series and only added in the email cc field. Jakub/Paolo, if you apply the series as-is I can make sure these end up in stable (as they likely will even without the cc tag). If you prefer I send a v2 just let me know. - Mat