Lines Matching defs:nbytes
224 int sync_file_range(struct file *file, loff_t offset, loff_t nbytes,
236 endbyte = offset + nbytes;
258 nbytes = 0;
262 if (nbytes == 0)
300 * a file in the range offset .. (offset+nbytes-1) inclusive. If nbytes is
348 int ksys_sync_file_range(int fd, loff_t offset, loff_t nbytes,
356 return sync_file_range(fd_file(f), offset, nbytes, flags);
359 SYSCALL_DEFINE4(sync_file_range, int, fd, loff_t, offset, loff_t, nbytes,
362 return ksys_sync_file_range(fd, offset, nbytes, flags);
367 compat_arg_u64_dual(nbytes), unsigned int, flags)
370 compat_arg_u64_glue(nbytes), flags);
377 loff_t, offset, loff_t, nbytes)
379 return ksys_sync_file_range(fd, offset, nbytes, flags);