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 ADE391F463 for ; Wed, 18 Dec 2019 15:33:26 +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=IAE3L9JXMm9q8CdbWXZNTNVBcbsCe4CffEq5yhvu1S8 /SBAwxDcGJWcQ4AdOxjWmZ4eDjUea4dXJUlyTwX44ESE5Nt6QZTHeMMt1lnQp0jz /xQTWYxWhRcDInUYe49iCVt153m+Gik4PO6ihB4ngf7Ah4AwIm4B1wuhaaNGuiOc = 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=tGRLBm1AgRySkvq4ZKyfWi2N6Tg=; b=IE7o1vnEeXbmUBmbg aF73kWLp9AcGXyVf0R/MHG00FdcxmTTvokrDyeJcbuOGCNT72IIk2pX8oIw1Dpgc dqkFNmeJ6nEHAHJdaIBYMIch8n1X0A82buNKj3pKKsyI2Gwm0FHpMxz6z+59JcKr 4OQsDu6wqWMd/DkFFjDSdnNICY= Received: (qmail 33194 invoked by alias); 18 Dec 2019 15:33:24 -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 33183 invoked by uid 89); 18 Dec 2019 15:33:23 -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=1576683201; 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=LLSNgM0j4abhcPoMB1lqd9BjEU4tbb2Rtfg9REZAxhg=; b=XVWPZyjym9A8at7vSDfjFLN1TDhjOeEQXDrlEI8p3cZzzMnD797i2z7MEG+kAtQcbZuvfB 4clMGa/+Y5VOpOHZlwdcpq8t+t3vp4A31+yeak6lJDMbTf1+ij/0BWKq/YqNmh3nLCYnuw ZujSajjRrqYxFX1XHf/zJNy4mMxXJd4= From: Florian Weimer To: Adhemerval Zanella Cc: libc-alpha@sourceware.org Subject: Re: [PATCH 14/16] linux: Enable vDSO clock_gettime64 for mips References: <20191217214728.2886-1-adhemerval.zanella@linaro.org> <20191217214728.2886-14-adhemerval.zanella@linaro.org> Date: Wed, 18 Dec 2019 16:33:13 +0100 In-Reply-To: <20191217214728.2886-14-adhemerval.zanella@linaro.org> (Adhemerval Zanella's message of "Tue, 17 Dec 2019 18:47:26 -0300") Message-ID: <87pnglzm12.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 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable * Adhemerval Zanella: > +#if _MIPS_SIM !=3D _ABI64 > +#define HAVE_CLOCK_GETTIME64_VSYSCALL "__vdso_clock_gettime64" > +#endif I think we typically write =E2=80=9C# define=E2=80=9D in this situation. I can't comment on the MIPS content of this patch. Thanks, Florian