Home
last modified time | relevance | path

Searched refs:times (Results 1 – 7 of 7) sorted by relevance

/fs/
Dutimes.c27 SYSCALL_DEFINE2(utime, char __user *, filename, struct utimbuf __user *, times) in SYSCALL_DEFINE2() argument
31 if (times) { in SYSCALL_DEFINE2()
32 if (get_user(tv[0].tv_sec, &times->actime) || in SYSCALL_DEFINE2()
33 get_user(tv[1].tv_sec, &times->modtime)) in SYSCALL_DEFINE2()
38 return do_utimes(AT_FDCWD, filename, times ? tv : NULL, 0); in SYSCALL_DEFINE2()
51 static int utimes_common(struct path *path, struct timespec *times) in utimes_common() argument
61 if (times && times[0].tv_nsec == UTIME_NOW && in utimes_common()
62 times[1].tv_nsec == UTIME_NOW) in utimes_common()
63 times = NULL; in utimes_common()
66 if (times) { in utimes_common()
[all …]
/fs/hostfs/
Dhostfs_user.c201 struct timeval times[2]; in set_attr() local
248 times[0].tv_sec = st.atime.tv_sec; in set_attr()
249 times[0].tv_usec = st.atime.tv_nsec / 1000; in set_attr()
250 times[1].tv_sec = st.mtime.tv_sec; in set_attr()
251 times[1].tv_usec = st.mtime.tv_nsec / 1000; in set_attr()
254 times[0].tv_sec = attrs->ia_atime.tv_sec; in set_attr()
255 times[0].tv_usec = attrs->ia_atime.tv_nsec / 1000; in set_attr()
258 times[1].tv_sec = attrs->ia_mtime.tv_sec; in set_attr()
259 times[1].tv_usec = attrs->ia_mtime.tv_nsec / 1000; in set_attr()
263 if (futimes(fd, times) != 0) in set_attr()
[all …]
/fs/isofs/
Drock.c404 iso_date(rr->u.TF.times[cnt++].time, in parse_rock_ridge_inode_internal()
410 iso_date(rr->u.TF.times[cnt++].time, in parse_rock_ridge_inode_internal()
416 iso_date(rr->u.TF.times[cnt++].time, in parse_rock_ridge_inode_internal()
422 iso_date(rr->u.TF.times[cnt++].time, in parse_rock_ridge_inode_internal()
Drock.h73 struct stamp times[0]; /* Variable number of these beasts */ member
/fs/logfs/
DKconfig11 times and potentially less RAM usage, although the latter has
/fs/befs/
DChangeLog164 can be called multiple times for each inode struct. [WD]
/fs/cifs/
DCHANGES61 user's smb session. This fix allows cifs to mount multiple times to the
198 Fix mtime bouncing around from local idea of last write times to remote time.
450 improperly zeroed buffer in CIFS Unix extensions set times call.