forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fs: Add VirtualBox guest shared folder (vboxsf) support
VirtualBox hosts can share folders with guests, this commit adds a VFS driver implementing the Linux-guest side of this, allowing folders exported by the host to be mounted under Linux. This driver depends on the guest <-> host IPC functions exported by the vboxguest driver. Acked-by: Christoph Hellwig <[email protected]> Signed-off-by: Hans de Goede <[email protected]> Signed-off-by: Al Viro <[email protected]>
- Loading branch information
1 parent
f35aa2b
commit 0fd1695
Showing
12 changed files
with
3,280 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17610,6 +17610,12 @@ 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 <[email protected]> | ||
L: [email protected] | ||
S: Maintained | ||
F: fs/vboxsf/* | ||
|
||
VIRTUAL SERIO DEVICE DRIVER | ||
M: Stephen Chandler Paul <[email protected]> | ||
S: Maintained | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# SPDX-License-Identifier: MIT | ||
|
||
obj-$(CONFIG_VBOXSF_FS) += vboxsf.o | ||
|
||
vboxsf-y := dir.o file.o utils.o vboxsf_wrappers.o super.o |
Oops, something went wrong.