Home
last modified time | relevance | path

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

/fs/
Dutimes.c174 struct timespec __user *, utimes, int, flags) in SYSCALL_DEFINE4() argument
178 if (utimes) { in SYSCALL_DEFINE4()
179 if (copy_from_user(&tstimes, utimes, sizeof(tstimes))) in SYSCALL_DEFINE4()
188 return do_utimes(dfd, filename, utimes ? tstimes : NULL, flags); in SYSCALL_DEFINE4()
192 struct timeval __user *, utimes) in SYSCALL_DEFINE3()
197 if (utimes) { in SYSCALL_DEFINE3()
198 if (copy_from_user(&times, utimes, sizeof(times))) in SYSCALL_DEFINE3()
216 return do_utimes(dfd, filename, utimes ? tstimes : NULL, 0); in SYSCALL_DEFINE3()
219 SYSCALL_DEFINE2(utimes, char __user *, filename, in SYSCALL_DEFINE2() argument
220 struct timeval __user *, utimes) in SYSCALL_DEFINE2()
[all …]
DMakefile13 pnode.o drop_caches.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.c304 } else if (utimes(file, times) != 0) { in set_attr()