blob: fa98f8e9af688f3ff550922f803fa3702dc6c988 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/* Created (MFS based):
* February 2010 (Evgeniy Ivanov)
*/
#include "fs.h"
#include "inode.h"
#include <sys/time.h>
#include <sys/stat.h>
/*===========================================================================*
* fs_utime *
*===========================================================================*/
int fs_utime(ino_t ino_nr, struct timespec *atime, struct timespec *mtime)
{
register struct inode *rip;
/* Temporarily open the file. */
if( (rip = get_inode(fs_dev, ino_nr)) == NULL)
return(EINVAL);
rip->i_update = CTIME; /* discard any stale ATIME and MTIME flags */
switch (atime->tv_nsec) {
case UTIME_NOW:
rip->i_update |= ATIME;
break;
case UTIME_OMIT: /* do not touch */
break;
default:
/* Ext2FS does not support subsecond resolution, so we round down. */
rip->i_atime = atime->tv_sec;
break;
}
switch (mtime->tv_nsec) {
case UTIME_NOW:
rip->i_update |= MTIME;
break;
case UTIME_OMIT: /* do not touch */
break;
default:
/* Ext2FS does not support subsecond resolution, so we round down. */
rip->i_mtime = mtime->tv_sec;
break;
}
rip->i_dirt = IN_DIRTY;
put_inode(rip);
return(OK);
}
|