Changes between Initial Version and Version 1 of Ticket #3485
- Timestamp:
- 08/19/15 14:28:53 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3485 – Description
initial v1 1 1 I want this change in src/vfs/extfs/extfs.c: 2 2 add to extfs_fstat() lines between //BEGIN and //END 3 {{{ 3 4 static int 4 5 extfs_fstat (void *data, struct stat *buf) … … 17 18 return 0; 18 19 } 20 }}} 19 21 So extfs script can set atime and mtime in copyout, and they will be set in the properties of destination file. 20 22 Why do I need this: I need to use 3 bytes to store some data related to file, I decided to store them in st_atime. As I learned if atime is bigger than mtime, atime won't be changed until mtime is changed. So my script sets atime of a copied out file to 0x7Fxxxxxx.