Lines Matching defs:filep
49 ssize_t file_fallocate64(struct file *filep, int mode, off64_t offset, off64_t len)
61 if (((unsigned int)(filep->f_oflags) & O_ACCMODE) == O_RDONLY) {
67 if (!filep->ops || !filep->ops->fallocate64) {
74 ret = filep->ops->fallocate64(filep, mode, offset, len);
111 struct file *filep = NULL;
130 int ret = fs_getfilep(fd, &filep);
136 if ((unsigned int)filep->f_oflags & O_DIRECTORY) {
142 return file_fallocate64(filep, mode, offset, len);