From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15964 invoked by alias); 12 Jan 2018 16:31:15 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Received: (qmail 15944 invoked by uid 89); 12 Jan 2018 16:31:14 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.9 required=5.0 tests=BAYES_00,KAM_LAZY_DOMAIN_SECURITY,SPF_HELO_PASS,T_RP_MATCHES_RCVD autolearn=no version=3.3.2 spammy= X-HELO: mx1.redhat.com Subject: Re: [PATCHv2] powerpc: Fix syscalls during early process initialization [BZ #22685] To: Tulio Magno Quites Machado Filho , libc-alpha@sourceware.org Cc: Adhemerval Zanella , aurelien@aurel32.net References: <2bc5bd27-1901-495e-6026-6440f2434f01@linaro.org> <20180112160704.20107-1-tuliom@linux.vnet.ibm.com> From: Florian Weimer Message-ID: <5edfa606-9c49-8bde-46bf-35dc43fa2bc5@redhat.com> Date: Fri, 12 Jan 2018 16:31:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.5.0 MIME-Version: 1.0 In-Reply-To: <20180112160704.20107-1-tuliom@linux.vnet.ibm.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2018-01/txt/msg00458.txt.bz2 On 01/12/2018 05:07 PM, Tulio Magno Quites Machado Filho wrote: > +/* __access_noerrno is used during process initialization in elf/dl-tunables.c > + before the TCB is initialized, prohibiting the usage of > + ABORT_TRANSACTION. */ > +#undef ABORT_TRANSACTION > +#define ABORT_TRANSACTION > + > +#include "sysdeps/unix/sysv/linux/not-errno.h" This #define isn't properly scoped, so I really don't like this approach for a header file. Thanks, Florian