From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_PASS,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3F25BC43387 for ; Thu, 10 Jan 2019 17:06:34 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 19A73217F9 for ; Thu, 10 Jan 2019 17:06:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729109AbfAJRG2 (ORCPT ); Thu, 10 Jan 2019 12:06:28 -0500 Received: from mail-qt1-f195.google.com ([209.85.160.195]:33067 "EHLO mail-qt1-f195.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728918AbfAJRG2 (ORCPT ); Thu, 10 Jan 2019 12:06:28 -0500 Received: by mail-qt1-f195.google.com with SMTP id l11so14028193qtp.0; Thu, 10 Jan 2019 09:06:26 -0800 (PST) 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=ppZcVQ/6kEa1+6j6RgrBmmjrAAts0gpmQru81oI2DjY=; b=eUNK2GNcNZATkLKzPd+5MbCWteA1Rs9iH5n/sPGSXu7s5xGsmbf8IUfFNXXc/5rqUt BtpR62/vROgnBjwJcLxARMkZYGLyhdHXFz80odEWynHx6UzRJANvJ5Lc/XgeewNZ11Pm f9TpCO+6Ax0MygpLp48TR5W1TPvP2xRvBEFHizdsqMCYdKdd51cB++Sh29OJdqNN0JTA 3JyLmWstDYV9ngto322UVZNuLN9k41EexiuKKFuH+Ob+/sF2UQ9IdMO0+x5U9Aiz0Oji GU+sySHvsn0UaF/Zp8Ueg948My2oVRlCgAF1/jh3qC54/q9VptuhC1NtBdwXnOrNq4Qe 7bvw== X-Gm-Message-State: AJcUukfj/jXI4kquXnz2WkbP/M/dM9sSVZJ/C8fxX+mt/zfF3hujL8l+ N+PbRPBHXbW1PslXygWDbU2sBEqCbp27/cKdqR4= X-Google-Smtp-Source: ALg8bN6AYimQvL2fk3CyhFYbTwHueixsV0cppMAFEDILJ7f9F0R4jNkQXt8J3yrK7O3RY2Kukmp6QEA1Mn21OLb0A00= X-Received: by 2002:a0c:e202:: with SMTP id q2mr10276671qvl.180.1547139986093; Thu, 10 Jan 2019 09:06:26 -0800 (PST) MIME-Version: 1.0 References: <20190110162435.309262-1-arnd@arndb.de> In-Reply-To: From: Arnd Bergmann Date: Thu, 10 Jan 2019 18:06:09 +0100 Message-ID: Subject: Re: [PATCH 00/15] arch: synchronize syscall tables in preparation for y2038 To: Geert Uytterhoeven Cc: y2038 Mailman List , Linux API , Linux Kernel Mailing List , Ivan Kokshaysky , Matt Turner , Russell King , Catalin Marinas , Will Deacon , Tony Luck , Fenghua Yu , Michal Simek , Paul Burton , Helge Deller , Michael Ellerman , Martin Schwidefsky , Heiko Carstens , Rich Felker , "David S. Miller" , Andy Lutomirski , Thomas Gleixner , Ingo Molnar , "H. Peter Anvin" , "the arch/x86 maintainers" , Max Filippov , Firoz Khan , "Eric W. Biederman" , Deepa Dinamani , Dominik Brodowski , Andrew Morton , Davidlohr Bueso , alpha , Linux ARM , "linux-ia64@vger.kernel.org" , linux-m68k , linux-mips@vger.kernel.org, Parisc List , linuxppc-dev , linux-s390 , Linux-sh list , sparclinux Content-Type: text/plain; charset="UTF-8" Sender: linux-parisc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-parisc@vger.kernel.org On Thu, Jan 10, 2019 at 5:59 PM Geert Uytterhoeven wrote: > > Hi Arnd, > > On Thu, Jan 10, 2019 at 5:26 PM Arnd Bergmann wrote: > > The system call tables have diverged a bit over the years, and a number > > of the recent additions never made it into all architectures, for one > > reason or another. > > > > This is an attempt to clean it up as far as we can without breaking > > compatibility, doing a number of steps: > > Thanks a lot! > > > - Add system calls that have not yet been integrated into all > > architectures but that we definitely want there. > > It looks like you missed wiring up io_pgetevents() on m68k. > Is that intentional? Yes, I thought I had described that somewhere but maybe I forgot: semtimedop() and io_pgetevents() get replaced with time64 versions in the follow-up, so I only added them in 64-bit architectures. If you think we should have both io_pgetevents() and io_pgetevents_time32() on all 32-bit architectures, I can add that as well. Arnd