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=-13.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PULL_REQUEST,MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,SPF_HELO_NONE,SPF_PASS autolearn=ham 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 C06EDC433DF for ; Mon, 12 Oct 2020 03:19:56 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 9C7D42076C for ; Mon, 12 Oct 2020 03:19:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727121AbgJLDTz (ORCPT ); Sun, 11 Oct 2020 23:19:55 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48420 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727093AbgJLDTz (ORCPT ); Sun, 11 Oct 2020 23:19:55 -0400 Received: from ZenIV.linux.org.uk (zeniv.linux.org.uk [IPv6:2002:c35c:fd02::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E00FEC0613CE; Sun, 11 Oct 2020 20:19:54 -0700 (PDT) Received: from viro by ZenIV.linux.org.uk with local (Exim 4.92.3 #3 (Red Hat Linux)) id 1kRoNN-00Fke8-A6; Mon, 12 Oct 2020 03:19:53 +0000 Date: Mon, 12 Oct 2020 04:19:53 +0100 From: Al Viro To: Linus Torvalds Cc: linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org, Christoph Hellwig Subject: [git pull] vfs.git quota compat series Message-ID: <20201012031953.GG3576660@ZenIV.linux.org.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Sender: Al Viro Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org More Christoph's compat cleanups: quotactl(2). The following changes since commit 9123e3a74ec7b934a4a099e98af6a61c2f80bbf5: Linux 5.9-rc1 (2020-08-16 13:04:57 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs.git work.quota-compat for you to fetch changes up to 80bdad3d7e3ec03f812471d9309f5f682e10f52b: quota: simplify the quotactl compat handling (2020-09-17 13:00:46 -0400) ---------------------------------------------------------------- Christoph Hellwig (3): compat: lift compat_s64 and compat_u64 to compat: add a compat_need_64bit_alignment_fixup() helper quota: simplify the quotactl compat handling arch/arm64/include/asm/compat.h | 2 - arch/mips/include/asm/compat.h | 2 - arch/parisc/include/asm/compat.h | 2 - arch/powerpc/include/asm/compat.h | 2 - arch/s390/include/asm/compat.h | 2 - arch/sparc/include/asm/compat.h | 3 +- arch/x86/entry/syscalls/syscall_32.tbl | 2 +- arch/x86/include/asm/compat.h | 3 +- fs/quota/Kconfig | 5 -- fs/quota/Makefile | 1 - fs/quota/compat.c | 120 --------------------------------- fs/quota/compat.h | 34 ++++++++++ fs/quota/quota.c | 73 ++++++++++++++++---- include/asm-generic/compat.h | 8 +++ include/linux/compat.h | 9 +++ include/linux/quotaops.h | 3 - kernel/sys_ni.c | 1 - 17 files changed, 113 insertions(+), 159 deletions(-) delete mode 100644 fs/quota/compat.c create mode 100644 fs/quota/compat.h