Commit 0e3f1ad8 authored by Linus Torvalds's avatar Linus Torvalds
Browse files

Remove VirtualBox guest shared folders filesystem



This went into staging in rc7.  It turns out that was a mistake, and
apparently it wasn't even supposed to go there at all, but be introduced
as a regular filesystem.

We don't try to sneak in whole new filesystems this late in the rc, just
delete the whole thing, and it can be re-introduced as a proper patch
with proper acks from actual filesystem people instead of some odd
late-rc staging back-door.

Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Christoph Hellwig <hch@infradead.org>
Cc: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 8c5bd25b
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -17338,12 +17338,6 @@ F: include/linux/vbox_utils.h
F:	include/uapi/linux/vbox*.h
F:	drivers/virt/vboxguest/
VIRTUAL BOX SHARED FOLDER VFS DRIVER:
M:	Hans de Goede <hdegoede@redhat.com>
L:	linux-fsdevel@vger.kernel.org
S:	Maintained
F:	drivers/staging/vboxsf/*
VIRTUAL SERIO DEVICE DRIVER
M:	Stephen Chandler Paul <thatslyude@gmail.com>
S:	Maintained
+0 −2
Original line number Diff line number Diff line
@@ -125,6 +125,4 @@ source "drivers/staging/exfat/Kconfig"

source "drivers/staging/qlge/Kconfig"

source "drivers/staging/vboxsf/Kconfig"

endif # STAGING
+0 −1
Original line number Diff line number Diff line
@@ -53,4 +53,3 @@ obj-$(CONFIG_UWB) += uwb/
obj-$(CONFIG_USB_WUSB)		+= wusbcore/
obj-$(CONFIG_EXFAT_FS)		+= exfat/
obj-$(CONFIG_QLGE)		+= qlge/
obj-$(CONFIG_VBOXSF_FS)		+= vboxsf/

drivers/staging/vboxsf/Kconfig

deleted100644 → 0
+0 −10
Original line number Diff line number Diff line
config VBOXSF_FS
	tristate "VirtualBox guest shared folder (vboxsf) support"
	depends on X86 && VBOXGUEST
	select NLS
	help
	  VirtualBox hosts can share folders with guests, this driver
	  implements the Linux-guest side of this allowing folders exported
	  by the host to be mounted under Linux.

	  If you want to use shared folders in VirtualBox guests, answer Y or M.

drivers/staging/vboxsf/Makefile

deleted100644 → 0
+0 −5
Original line number Diff line number Diff line
# SPDX-License-Identifier: MIT

obj-$(CONFIG_VBOXSF_FS) += vboxsf.o

vboxsf-y := dir.o file.o utils.o vboxsf_wrappers.o super.o
Loading