From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1763172AbXGTMTF (ORCPT ); Fri, 20 Jul 2007 08:19:05 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1759298AbXGTMSv (ORCPT ); Fri, 20 Jul 2007 08:18:51 -0400 Received: from fonzie.hosting9000.com ([85.214.50.12]:32940 "EHLO fonzie.hosting9000.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756950AbXGTMSu (ORCPT ); Fri, 20 Jul 2007 08:18:50 -0400 Message-ID: <46A0A7C2.3090006@googlemail.com> Date: Fri, 20 Jul 2007 14:17:06 +0200 From: Gabriel C User-Agent: Thunderbird 2.0.0.4 (X11/20070617) MIME-Version: 1.0 To: "Robert P. J. Day" CC: Linux Kernel Mailing List , netdev@vger.kernel.org Subject: Re: [PATCH] IP_VS should depend on EXPERIMENTAL ? References: <46A0A01A.7030403@googlemail.com> In-Reply-To: Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Robert P. J. Day wrote: > On Fri, 20 Jul 2007, Gabriel C wrote: > >> Hi, >> >> IP_VS has : >> >> .. >> >> tristate "IP virtual server support (EXPERIMENTAL)" >> >> .. >> >> but it does not depend on EXPERIMENTAL. >> >> >> Signed-off-by: Gabriel Craciunescu >> >> --- >> >> net/ipv4/ipvs/Kconfig | 2 +- >> 1 files changed, 1 insertions(+), 1 deletions(-) >> >> diff --git a/net/ipv4/ipvs/Kconfig b/net/ipv4/ipvs/Kconfig >> index 09d0c3f..3c594ec 100644 >> --- a/net/ipv4/ipvs/Kconfig >> +++ b/net/ipv4/ipvs/Kconfig >> @@ -3,7 +3,7 @@ >> # >> menuconfig IP_VS >> tristate "IP virtual server support (EXPERIMENTAL)" >> - depends on NETFILTER >> + depends on NETFILTER && EXPERIMENTAL >> ---help--- >> IP Virtual Server support will let you build a high-performance >> virtual server based on cluster of two or more real servers. This > > there's maturity-level inconsistency like that in a few places, like > when stuff is tagged as EXPERIMENTAL, but labelled as OBSOLETE: > [ a lot examples ] I know that and there are a lot more things depending on 'EXPERIMENTAL' and not having EXPERIMENTAL visible all over the tree but that patch I've made for the _net_ part got NACK'ed while your maturity idea and I rm -rf'ed all the other. This one has a missing depends on EXPERIMENTAL while saying it is. So *could* we please stop this maturity stuff for now ? I don't see it in .23 nor .24 if at all. And even you get this kind changes for .24 almost a sed line will cleanup the whole tree from : ... "FOO blah (EXPERIMENTAL)" ... so what is your problem ? > rday Gabriel