Changeset 39840 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Jan 23, 2012 5:32:44 PM (13 years ago)
- Location:
- trunk/src/VBox/Additions/linux/sharedfolders
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/sharedfolders/dirops.c
r38447 r39840 478 478 */ 479 479 static int sf_create_aux(struct inode *parent, struct dentry *dentry, 480 int mode, int fDirectory)480 umode_t mode, int fDirectory) 481 481 { 482 482 int rc, err; … … 576 576 * @returns 0 on success, Linux error code otherwise 577 577 */ 578 static int sf_create(struct inode *parent, struct dentry *dentry, int mode579 578 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0) 580 , struct nameidata *nd 579 static int sf_create(struct inode *parent, struct dentry *dentry, umode_t mode, struct nameidata *nd) 580 #else 581 static int sf_create(struct inode *parent, struct dentry *dentry, umode_t mode) 581 582 #endif 582 )583 583 { 584 584 TRACE(); … … 594 594 * @returns 0 on success, Linux error code otherwise 595 595 */ 596 static int sf_mkdir(struct inode *parent, struct dentry *dentry, int mode)596 static int sf_mkdir(struct inode *parent, struct dentry *dentry, umode_t mode) 597 597 { 598 598 TRACE(); -
trunk/src/VBox/Additions/linux/sharedfolders/vfsmod.c
r39788 r39840 527 527 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0) 528 528 static int follow_symlinks = 0; 529 module_param(follow_symlinks, bool, 0);529 module_param(follow_symlinks, int, 0); 530 530 MODULE_PARM_DESC(follow_symlinks, "Let host resolve symlinks rather than showing them"); 531 531 #endif
Note:
See TracChangeset
for help on using the changeset viewer.