Searched refs:times (Results 1 – 7 of 7) sorted by relevance
/fs/ |
D | utimes.c | 27 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, ×->actime) || in SYSCALL_DEFINE2() 33 get_user(tv[1].tv_sec, ×->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/ |
D | hostfs_user.c | 201 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/ |
D | rock.c | 404 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()
|
D | rock.h | 73 struct stamp times[0]; /* Variable number of these beasts */ member
|
/fs/logfs/ |
D | Kconfig | 11 times and potentially less RAM usage, although the latter has
|
/fs/befs/ |
D | ChangeLog | 164 can be called multiple times for each inode struct. [WD]
|
/fs/cifs/ |
D | CHANGES | 61 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.
|