Changeset 76733 in vbox
- Timestamp:
- Jan 9, 2019 12:58:33 PM (6 years ago)
- Location:
- trunk/src/VBox/Additions/linux/sharedfolders
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/sharedfolders/.scm-settings
r76553 r76733 1 1 # $Id$ 2 2 ## @file 3 # Source code massager settings for linux shared folders driver.3 # Source code massager settings for linux shared folders module. 4 4 # 5 5 -
trunk/src/VBox/Additions/linux/sharedfolders/Makefile.module
r76553 r76733 1 1 # $Id$ 2 2 ## @file 3 # V irtualBox Guest AdditionsModule Makefile.3 # VBox Linux Shared Folders VFS Module Makefile. 4 4 # 5 5 # (For 2.6.x this file must be 'Makefile'!) -
trunk/src/VBox/Additions/linux/sharedfolders/dirops.c
r76553 r76733 1 /* $Id$ */ 1 2 /** @file 2 * 3 * vboxsf -- VirtualBox Guest Additions for Linux: 4 * Directory inode and file operations 3 * vboxsf - VBox Linux Shared Folders VFS, directory inode and file operations 5 4 */ 6 5 -
trunk/src/VBox/Additions/linux/sharedfolders/lnkops.c
r76553 r76733 1 /* $Id$ */ 1 2 /** @file 2 * 3 * vboxsf -- VirtualBox Guest Additions for Linux: 4 * Operations for symbolic links. 3 * vboxsf - VBox Linux Shared Folders VFS, operations for symbolic links. 5 4 */ 6 5 -
trunk/src/VBox/Additions/linux/sharedfolders/regops.c
r76553 r76733 1 1 /* $Id$ */ 2 2 /** @file 3 * vboxsf - VBox Linux Shared Folders , Regular file inode and file operations.3 * vboxsf - VBox Linux Shared Folders VFS, Regular file inode and file operations. 4 4 */ 5 5 -
trunk/src/VBox/Additions/linux/sharedfolders/utils.c
r76553 r76733 1 /* $Id$ */ 1 2 /** @file 3 * vboxsf - VBox Linux Shared Folders VFS, utility functions. 2 4 * 3 * vboxsf -- VirtualBox Guest Additions for Linux: 4 * Utility functions. 5 * Mainly conversion from/to VirtualBox/Linux data structures 5 * Utility functions (mainly conversion from/to VirtualBox/Linux data structures). 6 6 */ 7 7 -
trunk/src/VBox/Additions/linux/sharedfolders/vbsfmount.h
r76563 r76733 1 /* $Id$ */ 1 2 /** @file 2 * vboxsf - - VirtualBox Guest Additions for Linux:mount(2) parameter structure.3 * vboxsf - VBox Linux Shared Folders VFS, mount(2) parameter structure. 3 4 */ 4 5 -
trunk/src/VBox/Additions/linux/sharedfolders/vfsmod.c
r76689 r76733 1 /* $Id$ */ 1 2 /** @file 2 * 3 * vboxsf -- VirtualBox Guest Additions for Linux: 4 * Virtual File System for VirtualBox Shared Folders 5 * 6 * Module initialization/finalization 7 * File system registration/deregistration 8 * Superblock reading 9 * Few utility functions 3 * vboxsf - VBox Linux Shared Folders VFS, module init/term, super block management. 10 4 */ 11 5 … … 528 522 } 529 523 530 /** @todo Implement show_options (forever) or maybe set s_options (2.6.25+).531 * Necessary for the automounter tagging. */532 524 static struct super_operations sf_super_ops = { 533 525 #if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 36) -
trunk/src/VBox/Additions/linux/sharedfolders/vfsmod.h
r76563 r76733 1 /* $Id$ */ 1 2 /** @file 2 * vboxsf - VirtualBox Guest Additions for Linux.3 * vboxsf - Linux Shared Folders VFS, internal header. 3 4 */ 4 5
Note:
See TracChangeset
for help on using the changeset viewer.