From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS31976 209.132.180.0/23 X-Spam-Status: No, score=-4.0 required=3.0 tests=AWL,BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED, RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,SPF_HELO_PASS,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id CA0BB1F45E for ; Tue, 11 Feb 2020 12:34:13 +0000 (UTC) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:references:date:in-reply-to :message-id:mime-version:content-type:content-transfer-encoding; q=dns; s=default; b=XBj6Z8ZeKCfVfFLkAw8qopZPfTHQt2W4OiRje4wmUCt fS0P2GOAemC4y5zlLKQOks+yhQFxfspRrFL/rZUP7DiXN/nnT+OPusL1Bj0yvFMH kYqEYGsdVs1nkYdJ2fXl/9gnLp/zigDhzRqzbUDjbaJOSnpccULKwZlAk2mIIT/I = DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:references:date:in-reply-to :message-id:mime-version:content-type:content-transfer-encoding; s=default; bh=CrzWTljJ0b5OqOCrEeRwTYfyKmg=; b=ZJd/0DSxUx8gMnMj1 HBZzw52EmYShZ8bN7x9bFoBPtqDP7FE0chWD4eeIUgO331c7PnPtQHssMxPVkkN6 brs6S6uhL+1cZBAkX+xPswqDQkwBtSjFVJoisMyJzf/fk/GLmt30xSWrYKL/PaMF rhu2ynpVwNMQt2KPCtKqxrIEMc= Received: (qmail 71660 invoked by alias); 11 Feb 2020 12:34:11 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Received: (qmail 71651 invoked by uid 89); 11 Feb 2020 12:34:11 -0000 Authentication-Results: sourceware.org; auth=none X-HELO: us-smtp-1.mimecast.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1581424448; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=5QjU7ZRcqjc3zKV9PFDVZ2m9mdHZJ/UZoxmRZ+iX6t0=; b=awcrWjwM+Rt07j+yGwkpbcxN3Dvm2aJjWy2U2XQkhw5e8Y8Ahb3EMFaOmOXMPfKpkoktEW nLmv9wJc5N8bteHFA/3up6WMnrtWe3U/DcHdaDY2n2xknvhIKBlutT4VrUvB8A10QaWVvY CwWVKEpYq7QqNBHgDvnTHK0yEVcx4Vs= From: Florian Weimer To: Adhemerval Zanella Cc: libc-alpha@sourceware.org Subject: Re: [PATCH 15/15] linux: Remove INTERNAL_SYSCALL_DECL References: <20200210192038.23588-1-adhemerval.zanella@linaro.org> <20200210192038.23588-15-adhemerval.zanella@linaro.org> Date: Tue, 11 Feb 2020 13:34:03 +0100 In-Reply-To: <20200210192038.23588-15-adhemerval.zanella@linaro.org> (Adhemerval Zanella's message of "Mon, 10 Feb 2020 16:20:38 -0300") Message-ID: <87zhdpmhfo.fsf@oldenburg2.str.redhat.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain Content-Transfer-Encoding: quoted-printable * Adhemerval Zanella: > diff --git a/sysdeps/unix/sysv/linux/mips/mips32/sysdep.h b/sysdeps/unix/= sysv/linux/mips/mips32/sysdep.h > index 75d483c59b..8e9cb187d2 100644 > --- a/sysdeps/unix/sysv/linux/mips/mips32/sysdep.h > +++ b/sysdeps/unix/sysv/linux/mips/mips32/sysdep.h > @@ -37,6 +37,7 @@ > /* We don't want the label for the error handler to be visible in the sy= mbol > table when we define it here. */ > #ifdef __PIC__ > +# undef SYSCALL_ERROR_LABEL > # define SYSCALL_ERROR_LABEL 99b > #endif This change seems like it would fit more into patch 13? (Also for mips64, s390, s390x, x86-64.) Thanks, Florian