Changeset 23621 in vbox for trunk/src/VBox/Additions/linux/sharedfolders
- Timestamp:
- Oct 8, 2009 2:29:10 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 53302
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/sharedfolders/utils.c
r23196 r23621 152 152 inode->i_blkbits = 12; 153 153 #endif 154 inode->i_blocks = (info->cbObject + 4095) / 4096; 154 /* i_blocks always in units of 512 bytes! */ 155 inode->i_blocks = (info->cbAllocated + 511) / 512; 155 156 156 157 sf_ftime_from_timespec (&inode->i_atime, &info->AccessTime);
Note:
See TracChangeset
for help on using the changeset viewer.