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=-10.8 required=3.0 tests=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 1949EC35242 for ; Sat, 8 Feb 2020 22:46:40 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id DCDD02253D for ; Sat, 8 Feb 2020 22:46:39 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728535AbgBHWqj (ORCPT ); Sat, 8 Feb 2020 17:46:39 -0500 Received: from zeniv.linux.org.uk ([195.92.253.2]:36466 "EHLO ZenIV.linux.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728513AbgBHWqi (ORCPT ); Sat, 8 Feb 2020 17:46:38 -0500 Received: from viro by ZenIV.linux.org.uk with local (Exim 4.92.3 #3 (Red Hat Linux)) id 1j0Ys1-009czZ-7I; Sat, 08 Feb 2020 22:46:37 +0000 Date: Sat, 8 Feb 2020 22:46:37 +0000 From: Al Viro To: Linus Torvalds Cc: linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org Subject: [git pull] vboxsf Message-ID: <20200208224637.GH23230@ZenIV.linux.org.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org vboxsf, with fixups for fs_parse changes folded in. Identical to what had been in -next - git diff work.vboxsf merge.nfs-fs_parse comes empty. It is a rebase (on top of merge.nfs-fs_parse.1), but it's a single commit and here the tree being identical to what had been tested is all that matters - feeding it in two chunks (original commit + fixups) would be completely pointless, IMO. That should be it for bisect hazards from fs_parse API changes... The following changes since commit f35aa2bc809eacc44c3cee41b52cef1c451d4a89: tmpfs: switch to use of invalfc() (2020-02-07 14:48:44 -0500) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs.git work.vboxsf for you to fetch changes up to 0fd169576648452725fa2949bf391d10883d3991: fs: Add VirtualBox guest shared folder (vboxsf) support (2020-02-08 17:34:58 -0500) ---------------------------------------------------------------- Hans de Goede (1): fs: Add VirtualBox guest shared folder (vboxsf) support MAINTAINERS | 6 + fs/Kconfig | 1 + fs/Makefile | 1 + fs/vboxsf/Kconfig | 10 + fs/vboxsf/Makefile | 5 + fs/vboxsf/dir.c | 427 +++++++++++++++++++++ fs/vboxsf/file.c | 379 +++++++++++++++++++ fs/vboxsf/shfl_hostintf.h | 901 ++++++++++++++++++++++++++++++++++++++++++++ fs/vboxsf/super.c | 491 ++++++++++++++++++++++++ fs/vboxsf/utils.c | 551 +++++++++++++++++++++++++++ fs/vboxsf/vboxsf_wrappers.c | 371 ++++++++++++++++++ fs/vboxsf/vfsmod.h | 137 +++++++ 12 files changed, 3280 insertions(+) create mode 100644 fs/vboxsf/Kconfig create mode 100644 fs/vboxsf/Makefile create mode 100644 fs/vboxsf/dir.c create mode 100644 fs/vboxsf/file.c create mode 100644 fs/vboxsf/shfl_hostintf.h create mode 100644 fs/vboxsf/super.c create mode 100644 fs/vboxsf/utils.c create mode 100644 fs/vboxsf/vboxsf_wrappers.c create mode 100644 fs/vboxsf/vfsmod.h