From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8409 invoked by alias); 27 Aug 2007 12:47:45 -0000 Received: (qmail 8301 invoked by uid 22791); 27 Aug 2007 12:47:45 -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; Mon, 27 Aug 2007 12:47:38 +0000 Received: from sunsite.mff.cuni.cz (localhost.localdomain [127.0.0.1]) by sunsite.mff.cuni.cz (8.13.8/8.13.8) with ESMTP id l7RCsUM1003772; Mon, 27 Aug 2007 14:54:30 +0200 Received: (from jakub@localhost) by sunsite.mff.cuni.cz (8.13.8/8.13.8/Submit) id l7RCsUb8003771; Mon, 27 Aug 2007 14:54:30 +0200 Date: Mon, 27 Aug 2007 12:47:00 -0000 From: Jakub Jelinek To: Ulrich Drepper Cc: Glibc hackers Subject: [PATCH] Fix personality on x86_64 and ppc Message-ID: <20070827125429.GH2279@sunsite.mff.cuni.cz> Reply-To: Jakub Jelinek Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.2i Mailing-List: contact libc-hacker-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-hacker-owner@sourceware.org X-SW-Source: 2007-08/txt/msg00032.txt.bz2 Hi! With the addition of sysdeps/unix/sysv/linux/{x86_64,powerpc}/init-first.c the personality syscall is no longer exported on those architectures. Fixed thusly, not sure why init-first has been mentioned there at all, when it doesn't even call that syscall. 2007-08-27 Jakub Jelinek * sysdeps/unix/sysv/linux/syscalls.list (personality): Change caller to EXTRA. --- libc/sysdeps/unix/sysv/linux/syscalls.list.jj 2007-05-21 23:33:57.000000000 +0200 +++ libc/sysdeps/unix/sysv/linux/syscalls.list 2007-08-27 14:36:06.000000000 +0200 @@ -43,7 +43,7 @@ munlockall - munlockall i: munlockall nanosleep - nanosleep Ci:pp __libc_nanosleep __nanosleep nanosleep nfsservctl EXTRA nfsservctl i:ipp nfsservctl pause - pause Ci: __libc_pause pause -personality init-first personality i:i __personality personality +personality EXTRA personality i:i __personality personality pipe - pipe i:f __pipe pipe pivot_root EXTRA pivot_root i:ss pivot_root prctl EXTRA prctl i:iiiii __prctl prctl Jakub