From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752255AbZKKG1v (ORCPT ); Wed, 11 Nov 2009 01:27:51 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751987AbZKKG1u (ORCPT ); Wed, 11 Nov 2009 01:27:50 -0500 Received: from mx3.mail.elte.hu ([157.181.1.138]:60087 "EHLO mx3.mail.elte.hu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751886AbZKKG1t (ORCPT ); Wed, 11 Nov 2009 01:27:49 -0500 Date: Wed, 11 Nov 2009 07:27:36 +0100 From: Ingo Molnar To: Randy Dunlap Cc: lkml , x86@kernel.org, linux-kbuild@vger.kernel.org Subject: Re: [PATCH] x86 VSDO: fix Kconfig help Message-ID: <20091111062736.GA20546@elte.hu> References: <4AF9FB6C.70003@oracle.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4AF9FB6C.70003@oracle.com> User-Agent: Mutt/1.5.20 (2009-08-17) X-ELTE-SpamScore: 0.0 X-ELTE-SpamLevel: X-ELTE-SpamCheck: no X-ELTE-SpamVersion: ELTE 2.0 X-ELTE-SpamCheck-Details: score=0.0 required=5.9 tests=none autolearn=no SpamAssassin version=3.2.5 _SUMMARY_ Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Randy Dunlap wrote: > From: Randy Dunlap > > COMPAT_VDSO has 2 help text blocks, but kconfig only uses the > last one found, so merge the 2 blocks. > > It would be real nice if kconfig would warn about this. > > Signed-off-by: Randy Dunlap > --- > arch/x86/Kconfig | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > --- lnx-2632-rc6.orig/arch/x86/Kconfig > +++ lnx-2632-rc6/arch/x86/Kconfig > @@ -1601,12 +1601,12 @@ config COMPAT_VDSO > prompt "Compat VDSO support" > depends on X86_32 || IA32_EMULATION > ---help--- > - Map the 32-bit VDSO to the predictable old-style address too. > - ---help--- > Say N here if you are running a sufficiently recent glibc > version (2.3.3 or later), to remove the high-mapped > VDSO mapping and to exclusively use the randomized VDSO. > > + Map the 32-bit VDSO to the predictable old-style address too. > + > If unsure, say Y. I've applied it with the original ordering of the lines - it makes more sense that way. (first short summary of what the option does, then a longer paragraph.) Ingo