Changeset 64562 in vbox for trunk/src/VBox/Additions/linux
- Timestamp:
- Nov 4, 2016 12:15:15 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/sharedfolders/dirops.c
r62527 r64562 749 749 */ 750 750 static int sf_rename(struct inode *old_parent, struct dentry *old_dentry, 751 struct inode *new_parent, struct dentry *new_dentry) 751 struct inode *new_parent, struct dentry *new_dentry 752 #if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 9, 0) 753 , unsigned flags 754 #endif 755 ) 752 756 { 753 757 int err = 0, rc = VINF_SUCCESS; … … 755 759 756 760 TRACE(); 761 762 #if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 9, 0) 763 if (flags) 764 { 765 LogFunc(("rename with flags=%x\n", flags)); 766 return -EINVAL; 767 } 768 #endif 757 769 758 770 if (sf_g != GET_GLOB_INFO(new_parent->i_sb))
Note:
See TracChangeset
for help on using the changeset viewer.