From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12681 invoked by alias); 27 Dec 2005 08:53:37 -0000 Received: (qmail 12665 invoked by uid 22791); 27 Dec 2005 08:53:37 -0000 X-Spam-Check-By: sourceware.org Received: from sunsite.ms.mff.cuni.cz (HELO sunsite.mff.cuni.cz) (195.113.15.26) by sourceware.org (qpsmtpd/0.31) with ESMTP; Tue, 27 Dec 2005 08:53:34 +0000 Received: from sunsite.mff.cuni.cz (sunsite.mff.cuni.cz [127.0.0.1]) by sunsite.mff.cuni.cz (8.13.1/8.13.1) with ESMTP id jBR8rF2M011778; Tue, 27 Dec 2005 09:53:15 +0100 Received: (from jakub@localhost) by sunsite.mff.cuni.cz (8.13.1/8.13.1/Submit) id jBR8rFov011777; Tue, 27 Dec 2005 09:53:15 +0100 Date: Tue, 27 Dec 2005 08:53:00 -0000 From: Jakub Jelinek To: "David S. Miller" Cc: libc-hacker@sources.redhat.com Subject: Re: [PATCH]: Fix Sparc errlist-compat Message-ID: <20051227085314.GC4625@sunsite.mff.cuni.cz> Reply-To: Jakub Jelinek References: <20051226.195131.129531320.davem@davemloft.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20051226.195131.129531320.davem@davemloft.net> User-Agent: Mutt/1.4.1i Mailing-List: contact libc-hacker-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-hacker-owner@sourceware.org X-SW-Source: 2005-12/txt/msg00048.txt.bz2 On Mon, Dec 26, 2005 at 07:51:31PM -0800, David S. Miller wrote: > > With the robust futex errnos added in current 2.6.x kernel > headers, the Sparc errlist-compat needs to be bumped up to > 134. > > Please apply, thanks. This is ABI incompatible change, which really can't be done this way. If more error values are needed, they should be added at GLIBC_2.4 (likely not just on SPARC but on other arches as well). > 2005-12-26 David S. Miller > > * sysdeps/unix/sysv/linux/sparc/Versions: Bump errlist-compat up > to 134 for GLIBC_2.3 > > --- sysdeps/unix/sysv/linux/sparc/Versions 28 Aug 2002 23:56:02 -0000 1.1 > +++ sysdeps/unix/sysv/linux/sparc/Versions 27 Dec 2005 03:48:47 -0000 > @@ -13,7 +13,7 @@ > _sys_errlist; sys_errlist; _sys_nerr; sys_nerr; > } > GLIBC_2.3 { > - #errlist-compat 128 > + #errlist-compat 134 > _sys_errlist; sys_errlist; _sys_nerr; sys_nerr; > } > } Jakub