From mboxrd@z Thu Jan 1 00:00:00 1970 From: Roland McGrath Subject: Re: [patch 17/26] Xen-paravirt_ops: Add nosegneg capability to the vsyscall page notes Date: Fri, 16 Mar 2007 14:26:55 -0700 (PDT) Message-ID: <20070316212655.B6C6B1801C5@magilla.sf.frob.com> References: <20070316091552.GH23174@elte.hu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: Ingo Molnar's message of Friday, 16 March 2007 10:15:52 +0100 <20070316091552.GH23174@elte.hu> Sender: linux-kernel-owner@vger.kernel.org To: Ingo Molnar Cc: Jeremy Fitzhardinge , Andi Kleen , Andrew Morton , linux-kernel@vger.kernel.org, virtualization@lists.osdl.org, xen-devel@lists.xensource.com, Chris Wright , Zachary Amsden , Rusty Russell , Ian Pratt , Christian Limpach , Ulrich Drepper , Jakub Jelinek List-Id: virtualization@lists.linuxfoundation.org > > +NOTE_KERNELCAP_BEGIN(1, 1) > > +NOTE_KERNELCAP(1, "nosegneg") > > +NOTE_KERNELCAP_END This should be: NOTE_KERNELCAP_BEGIN(1, 1) NOTE_KERNELCAP(0, "nosegneg") NOTE_KERNELCAP_END i.e. 1->0 in the "bit" member. (Note the ld.so.conf.d file must have the matching bit number for ldconfig-based lookups to do the right thing.) Or else: NOTE_KERNELCAP_BEGIN(1, 2) NOTE_KERNELCAP(0, "nosegneg") NOTE_KERNELCAP_END i.e. 1->2 in the "mask" member. (The mask value should be 1<