summaryrefslogtreecommitdiffstats
path: root/fs/vboxsf/file.c
AgeCommit message (Collapse)AuthorFilesLines
2021-06-23vboxsf: Add vboxsf_[create|release]_sf_handle() helpersHans de Goede1-27/+44
Factor out the code to create / release a struct vboxsf_handle into 2 new helper functions. This is a preparation patch for adding atomic_open support. Fixes: 0fd169576648 ("fs: Add VirtualBox guest shared folder (vboxsf) support") Signed-off-by: Hans de Goede <hdegoede@redhat.com>
2020-02-08fs: Add VirtualBox guest shared folder (vboxsf) supportHans de Goede1-0/+379
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 <hch@infradead.org> Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>