Changes between Initial Version and Version 1 of Ticket #3485


Ignore:
Timestamp:
08/19/15 14:28:53 (9 years ago)
Author:
andrew_b
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3485 – Description

    initial v1  
    11I want this change in src/vfs/extfs/extfs.c: 
    22add to extfs_fstat() lines between //BEGIN and //END 
     3{{{ 
    34static int 
    45extfs_fstat (void *data, struct stat *buf) 
     
    1718    return 0; 
    1819} 
     20}}} 
    1921So extfs script can set atime and mtime in copyout, and they will be set in the properties of destination file. 
    2022Why 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.