From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qv1-xf44.google.com (mail-qv1-xf44.google.com [IPv6:2607:f8b0:4864:20::f44]) by sourceware.org (Postfix) with ESMTPS id B43BC3858D34 for ; Wed, 8 Jul 2020 18:07:53 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org B43BC3858D34 Received: by mail-qv1-xf44.google.com with SMTP id h18so20899858qvl.3 for ; Wed, 08 Jul 2020 11:07:53 -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=P0nfNv2tG5IV7QBlS0xdLUiXAD9ZI4fChEJtGE1E5Ac=; b=ZyLw9Mz+taPrPSs5/Yez/NaSdvdsA/Ti5Nqf2Q+iTirKo2wTP40bjq5bjuYKvAzebQ Tl5bIISAf8roCeGct0vtbM90KsT+MYwnBKM2a/VpcoUOhXH1rteAcLxYEBC+6ONN7V2m 1mn/p6V4ALPZwwuetpaW1W5WRwZlV+dvP1ZJWkuWeSciWoW9vTypfIO+/rwtUD11S/U9 QtcaaatSKKYOSvFjcYXkx/F5tfyq/ip8spANW938tIw/ttJwtdvvX/QDCnKNq/dssn7L q4PsbtmH+DweahwcRzWzw2TEbGPLAB5u+fiwvzQ7ynZrI+3wLC+YtVeNDlkq33q1qPQG FsUQ== X-Gm-Message-State: AOAM532VdnFQwdWPxrGozy92oS996gY7voGlOkSRYLe0D4s873ZJpnmv KumTlPySPrjUvjfCL4UG3Uv+mIJ/PXb0qN93iUEEUYsNYCI= X-Google-Smtp-Source: ABdhPJwDveK7pRMygumZWPTRrbl7d8AD8tXwbMnoVF3kapEUPTYLpFf6aXqkQRHeyTsU8f70TIRg8ztg+PCIjq3WS2I= X-Received: by 2002:ad4:4b62:: with SMTP id m2mr60096153qvx.68.1594231673229; Wed, 08 Jul 2020 11:07:53 -0700 (PDT) MIME-Version: 1.0 References: <20200630192441.3299710-1-adhemerval.zanella@linaro.org> <20200630192441.3299710-4-adhemerval.zanella@linaro.org> In-Reply-To: From: Adhemerval Zanella Date: Wed, 8 Jul 2020 15:07:42 -0300 Message-ID: Subject: Re: [PATCH 4/7] sysv: linux: Add 64-bit time_t variant for msgctl To: Alistair Francis Cc: GNU C Library , Stepan Golosunov , Alistair Francis Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-4.7 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, 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, 08 Jul 2020 18:07:54 -0000 On Thu, Jul 2, 2020 at 6:49 PM Alistair Francis wrote: > > #if defined __ASSUME_SYSVIPC_BROKEN_MODE_T \ > > && SHLIB_COMPAT (libc, GLIBC_2_2, GLIBC_2_31) > > @@ -90,7 +201,7 @@ int > > attribute_compat_text_section > > __msgctl_mode16 (int msqid, int cmd, struct msqid_ds *buf) > > { > > - return msgctl_syscall (msqid, cmd, buf); > > + return msgctl_syscall (msqid, cmd, (msgctl_arg_t *) buf); > > } > > compat_symbol (libc, __msgctl_mode16, msgctl, GLIBC_2_2); > > #endif > > Shouldn't everything below here be in a separate patch? Sorry, I just saw you reply now. Yes, It has wrongly bled to this patch. I will fix it.