From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-io1-xd41.google.com (mail-io1-xd41.google.com [IPv6:2607:f8b0:4864:20::d41]) by sourceware.org (Postfix) with ESMTPS id A828B386103B for ; Wed, 16 Sep 2020 15:07:33 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org A828B386103B Received: by mail-io1-xd41.google.com with SMTP id y74so8558922iof.12 for ; Wed, 16 Sep 2020 08:07:33 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=a7TXnP+22uMWJU/fC/ncHfsxR+0iVI+ikGnU66ScEqg=; b=tjT8YOVGrho5Fc3iGtR3l6h4kK+z5Htsf3sTRbQIObaCpCSk6Oohj3zqFv5g0pNcTL F8r0n/HvIVpolhJqmT53gWz3v/O4j2kWtezsystJ/aZQSWt76d+zpGFrYrJz7bCcbKhw Ca0t8Jamgn6eFNHmCsHyY1KbUpQorfwaMTdDjSgXscnXLULhvuIh1ORZrhVFemHYP7tW MX85aFTPLHNK+kLi+GMb/+vN0yuy2pQp8LhbTzCDgqToIArwTYKimvFUb/B0pW9+NyoI U5TST/+LNt6H9BctH7Lfh1xH10HL8fCGkzy83pNYlL6Qv55BBl/w7FTD5FsYuWiAKFyq 3RNw== X-Gm-Message-State: AOAM533Wc9owjiRXpR8k4An7FvNOE9hEzgiXR3wUL2guTClyWAF9zY8F xCmlI9ZTgRhBa3HHabsJeShQeLjfkPtaEeNjXvE= X-Google-Smtp-Source: ABdhPJyzAlwjO9OqqI5swbgJZ3+469Dy7PRkx7IN1+pfYUEkH6Xy39wH8OlPo96DlxVdWPHGUasfnZsLIwY+JWgBfc0= X-Received: by 2002:a5d:995a:: with SMTP id v26mr19575596ios.176.1600268853093; Wed, 16 Sep 2020 08:07:33 -0700 (PDT) MIME-Version: 1.0 References: <20200916110738.9904-1-lukma@denx.de> In-Reply-To: <20200916110738.9904-1-lukma@denx.de> From: Alistair Francis Date: Wed, 16 Sep 2020 07:56:22 -0700 Message-ID: Subject: Re: [PATCH 1/2] nptl: Provide proper spelling for 32 bit version of futex_abstimed_wait To: Lukasz Majewski Cc: Joseph Myers , Paul Eggert , Adhemerval Zanella , Arnd Bergmann , Alistair Francis , GNU C Library , Florian Weimer , "Carlos O'Donell" , Stepan Golosunov , Andreas Schwab , Zack Weinberg , Jeff Law Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-9.2 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_ENVFROM_END_DIGIT, FREEMAIL_FROM, GIT_PATCH_0, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Sep 2020 15:07:34 -0000 On Wed, Sep 16, 2020 at 4:07 AM Lukasz Majewski wrote: > > This change provides proper spelling of 32 bit __futex_abstimed_wait_cancelable32 > function Reviewed-by: Alistair Francis Alistair > --- > sysdeps/nptl/futex-internal.c | 12 ++++++------ > 1 file changed, 6 insertions(+), 6 deletions(-) > > diff --git a/sysdeps/nptl/futex-internal.c b/sysdeps/nptl/futex-internal.c > index a2ee5804ec..a4fc1dc52f 100644 > --- a/sysdeps/nptl/futex-internal.c > +++ b/sysdeps/nptl/futex-internal.c > @@ -24,10 +24,10 @@ > > #ifndef __ASSUME_TIME64_SYSCALLS > static int > -__futex_abstimed_wait_cancellable32 (unsigned int* futex_word, > - unsigned int expected, clockid_t clockid, > - const struct __timespec64* abstime, > - int private) > +__futex_abstimed_wait_cancelable32 (unsigned int* futex_word, > + unsigned int expected, clockid_t clockid, > + const struct __timespec64* abstime, > + int private) > { > if (! in_time_t_range (abstime->tv_sec)) > return -EOVERFLOW; > @@ -91,8 +91,8 @@ __futex_abstimed_wait_cancelable64 (unsigned int* futex_word, > FUTEX_BITSET_MATCH_ANY); > #ifndef __ASSUME_TIME64_SYSCALLS > if (err == -ENOSYS) > - err = __futex_abstimed_wait_cancellable32 (futex_word, expected, > - clockid, abstime, private); > + err = __futex_abstimed_wait_cancelable32 (futex_word, expected, > + clockid, abstime, private); > #endif > > switch (err) > -- > 2.20.1 >