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 88B0B359FB6; Fri, 9 Jan 2026 12:01:52 +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=1767960112; cv=none; b=oMu1szqiETDPWf6Jogul9Y8m8VwbWhpCx1+9LyeDmfblYpshCVx8oXCTrL/Fw5vwdu3vKLToDvnmadgWY8B27ltNsR5AkQP6O2cRkGu9+Ii/vD3GFYhdxYNnuVikl6tOcps6AilvIBWs7rUoeW703j7NzRtER0Fof0zW65iXLbY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1767960112; c=relaxed/simple; bh=oDkdIrThQ9xJMcyh44t/EkPF19PEu3/LTVR1AFtXHdI=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=XRgm0DKrGx/wQvM3K4NRDcT2cOSYDDYLoPo6XJE10jLKB3r7OeTrr/SSCg1hrWJLp+9YW4hwm1+Hxtribr4oKjdeoxr3WwkM/16pP2Go1GZVDx5CMuHtZ9z+eaIauVm2S0rUewJvx+ixN+kFD/SsqHC/NteOFO1+WgOeXZFl6a8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=nOzIkDBA; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="nOzIkDBA" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 186F3C4CEF1; Fri, 9 Jan 2026 12:01:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1767960112; bh=oDkdIrThQ9xJMcyh44t/EkPF19PEu3/LTVR1AFtXHdI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=nOzIkDBA7W4R9V3kyFMWg6QBfq/8yI80AV25cuwF0u7OaSQcZcPaIhURxbHcqB1zl qUXIhIexdVme/hc4iLM+2IdSq9A2+KngZt41P9bi/U9GSpg8bCmyrSDs6GVdcg6zIs m4TLmLKFKpzvonkdt1l9+b0gV0EIKmugRpvfAvkM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Jakub Kicinski , Benjamin Poirier , Paolo Abeni , Sasha Levin Subject: [PATCH 6.6 246/737] selftests: bonding: Add more missing config options Date: Fri, 9 Jan 2026 12:36:25 +0100 Message-ID: <20260109112143.247524077@linuxfoundation.org> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20260109112133.973195406@linuxfoundation.org> References: <20260109112133.973195406@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Benjamin Poirier [ Upstream commit dd2d40acdbb2b9e6bcddd5424b0e00c1760ecf26 ] As a followup to commit 03fb8565c880 ("selftests: bonding: add missing build configs"), add more networking-specific config options which are needed for bonding tests. For testing, I used the minimal config generated by virtme-ng and I added the options in the config file. All bonding tests passed. Fixes: bbb774d921e2 ("net: Add tests for bonding and team address list management") # for ipv6 Fixes: 6cbe791c0f4e ("kselftest: bonding: add num_grat_arp test") # for tc options Fixes: 222c94ec0ad4 ("selftests: bonding: add tests for ether type changes") # for nlmon Suggested-by: Jakub Kicinski Signed-off-by: Benjamin Poirier Link: https://lore.kernel.org/r/20240116154926.202164-1-bpoirier@nvidia.com Signed-off-by: Paolo Abeni Stable-dep-of: 2c28ee720ad1 ("selftests: bonding: add delay before each xvlan_over_bond connectivity check") Signed-off-by: Sasha Levin --- tools/testing/selftests/drivers/net/bonding/config | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tools/testing/selftests/drivers/net/bonding/config b/tools/testing/selftests/drivers/net/bonding/config index f85b16fc5128c..899d7fb6ea8e9 100644 --- a/tools/testing/selftests/drivers/net/bonding/config +++ b/tools/testing/selftests/drivers/net/bonding/config @@ -1,5 +1,10 @@ CONFIG_BONDING=y CONFIG_BRIDGE=y CONFIG_DUMMY=y +CONFIG_IPV6=y CONFIG_MACVLAN=y +CONFIG_NET_ACT_GACT=y +CONFIG_NET_CLS_FLOWER=y +CONFIG_NET_SCH_INGRESS=y +CONFIG_NLMON=y CONFIG_VETH=y -- 2.51.0