From nobody Wed Aug 26 12:57:44 2026 Received: from out-183.mta0.migadu.com (out-183.mta0.migadu.com [91.218.175.183]) (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 DCD4C288D0 for ; Wed, 17 Jun 2026 14:46:31 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.183 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1781707593; cv=none; b=P5eyFGJ/FEfwsboogoqHxnOrM0Q8HhaHIvDIngwe0umsttOjLLpjHzE+PSgISxoLlgXozBFWuMAhJyLvQjjGPdtLs7OZ8Mo4cOcJWU3HtCqIjgXFmJjdyUUPF2tXYEHHEZCZVG4pcPpI9K479m7F07JiLPJRfaNlf7vrG/jx8fQ= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1781707593; c=relaxed/simple; bh=KWb2JQk5EFkysNAREoJt8zHVoaRkclnVuU3n8IGiqaw=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=VrwSTwZqt53p66LrAnDj8WQmeC7Nnfxdn/t6kH15yuAaOgYHRPU5C0jXM/kPQpUpu6G94yJ7G5E4mOg9zrbpSag5VW31febUvRj5fAFcoeBO8iinV+0fX7nDxCtFXFgocSHqdQaMIWgWc8xD8Qa+iOv3+u9AcW9JZ04sZ2nMPlk= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=SVAjdPYj; arc=none smtp.client-ip=91.218.175.183 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="SVAjdPYj" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1781707590; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=znAyoSmtjwInbXZhUuS96a8SBg46sFtEoPBd6T7itWk=; b=SVAjdPYjE2tDZ3m60Y8/KeItyYFtuq3zA+Gcae6BiflNEukRGMZeOXQB7LSICoNE5QBpU8 tZ6eICBKOJL/huuyn6OuCM5n0coi7MQonVhyRJk6VEtpbHP0ei+E+EmJUwlrVRStRbXy1J kDE9Nvkb8JDGyyou0TALQKV5DKeeWe0= From: Gang Yan To: mptcp@lists.linux.dev Cc: Gang Yan Subject: [PATCH mptcp-next v2 1/9] DO-NOT-MERGE: mptcp: test IPV6=m in docker-virtme Date: Wed, 17 Jun 2026 22:46:08 +0800 Message-ID: In-Reply-To: References: Precedence: bulk X-Mailing-List: mptcp@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Migadu-Flow: FLOW_OUT Content-Type: text/plain; charset="utf-8" From: Gang Yan This is a helper commit for maintainer review of the preceding MPTCP selftests patches that teach the test scripts to gracefully skip IPv6 subtests when the running kernel has no CONFIG_MPTCP_IPV6. Signed-off-by: Gang Yan --- tools/testing/selftests/net/mptcp/config | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/testing/selftests/net/mptcp/config b/tools/testing/selft= ests/net/mptcp/config index 59051ee2a986..616fee329e22 100644 --- a/tools/testing/selftests/net/mptcp/config +++ b/tools/testing/selftests/net/mptcp/config @@ -7,11 +7,10 @@ CONFIG_IP_MULTIPLE_TABLES=3Dy CONFIG_IP_NF_FILTER=3Dm CONFIG_IP_NF_MANGLE=3Dm CONFIG_IP_NF_TARGET_REJECT=3Dm -CONFIG_IPV6=3Dy +CONFIG_IPV6=3Dm CONFIG_IPV6_MULTIPLE_TABLES=3Dy CONFIG_KALLSYMS=3Dy CONFIG_MPTCP=3Dy -CONFIG_MPTCP_IPV6=3Dy CONFIG_NET_ACT_CSUM=3Dm CONFIG_NET_ACT_PEDIT=3Dm CONFIG_NET_CLS_ACT=3Dy @@ -34,3 +33,5 @@ CONFIG_NFT_SOCKET=3Dm CONFIG_NFT_TPROXY=3Dm CONFIG_SYN_COOKIES=3Dy CONFIG_VETH=3Dy + +CONFIG_NF_TABLES_IPV4=3Dy --=20 2.43.0