Home
last modified time | relevance | path

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

/fs/
Dutimes.c176 struct timespec tstimes[2]; in SYSCALL_DEFINE4() local
179 if (copy_from_user(&tstimes, utimes, sizeof(tstimes))) in SYSCALL_DEFINE4()
183 if (tstimes[0].tv_nsec == UTIME_OMIT && in SYSCALL_DEFINE4()
184 tstimes[1].tv_nsec == UTIME_OMIT) in SYSCALL_DEFINE4()
188 return do_utimes(dfd, filename, utimes ? tstimes : NULL, flags); in SYSCALL_DEFINE4()
195 struct timespec tstimes[2]; in SYSCALL_DEFINE3() local
210 tstimes[0].tv_sec = times[0].tv_sec; in SYSCALL_DEFINE3()
211 tstimes[0].tv_nsec = 1000 * times[0].tv_usec; in SYSCALL_DEFINE3()
212 tstimes[1].tv_sec = times[1].tv_sec; in SYSCALL_DEFINE3()
213 tstimes[1].tv_nsec = 1000 * times[1].tv_usec; in SYSCALL_DEFINE3()
[all …]