Home
last modified time | relevance | path

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

/fs/
Dutimes.c179 struct timespec __user *, utimes, int, flags) in SYSCALL_DEFINE4() argument
183 if (utimes) { in SYSCALL_DEFINE4()
184 if (copy_from_user(&tstimes, utimes, sizeof(tstimes))) in SYSCALL_DEFINE4()
193 return do_utimes(dfd, filename, utimes ? tstimes : NULL, flags); in SYSCALL_DEFINE4()
197 struct timeval __user *, utimes) in SYSCALL_DEFINE3()
202 if (utimes) { in SYSCALL_DEFINE3()
203 if (copy_from_user(&times, utimes, sizeof(times))) in SYSCALL_DEFINE3()
221 return do_utimes(dfd, filename, utimes ? tstimes : NULL, 0); in SYSCALL_DEFINE3()
224 SYSCALL_DEFINE2(utimes, char __user *, filename, in SYSCALL_DEFINE2() argument
225 struct timeval __user *, utimes) in SYSCALL_DEFINE2()
[all …]
DMakefile13 pnode.o splice.o sync.o utimes.o \
/fs/cifs/
DTODO36 Including support for changing the time remotely (utimes command).
78 need to add ability to set time to server (utimes command)
/fs/hostfs/
Dhostfs_user.c265 } else if (utimes(file, times) != 0) { in set_attr()