Lines Matching refs:file

51 	struct file *file = iocb->ki_filp;  in ecryptfs_read_update_atime()  local
55 path = ecryptfs_dentry_to_lower_path(file->f_path.dentry); in ecryptfs_read_update_atime()
104 static int ecryptfs_readdir(struct file *file, struct dir_context *ctx) in ecryptfs_readdir() argument
107 struct file *lower_file; in ecryptfs_readdir()
108 struct inode *inode = file_inode(file); in ecryptfs_readdir()
114 lower_file = ecryptfs_file_to_lower(file); in ecryptfs_readdir()
182 static int ecryptfs_open(struct inode *inode, struct file *file) in ecryptfs_open() argument
186 struct dentry *ecryptfs_dentry = file->f_path.dentry; in ecryptfs_open()
193 ecryptfs_set_file_private(file, file_info); in ecryptfs_open()
218 == O_RDONLY && (file->f_flags & O_ACCMODE) != O_RDONLY) { in ecryptfs_open()
225 file, ecryptfs_inode_to_private(inode)->lower_file); in ecryptfs_open()
245 ecryptfs_file_to_private(file)); in ecryptfs_open()
250 static int ecryptfs_flush(struct file *file, fl_owner_t td) in ecryptfs_flush() argument
252 struct file *lower_file = ecryptfs_file_to_lower(file); in ecryptfs_flush()
255 filemap_write_and_wait(file->f_mapping); in ecryptfs_flush()
262 static int ecryptfs_release(struct inode *inode, struct file *file) in ecryptfs_release() argument
266 ecryptfs_file_to_private(file)); in ecryptfs_release()
271 ecryptfs_fsync(struct file *file, loff_t start, loff_t end, int datasync) in ecryptfs_fsync() argument
275 rc = filemap_write_and_wait(file->f_mapping); in ecryptfs_fsync()
279 return vfs_fsync(ecryptfs_file_to_lower(file), datasync); in ecryptfs_fsync()
282 static int ecryptfs_fasync(int fd, struct file *file, int flag) in ecryptfs_fasync() argument
285 struct file *lower_file = NULL; in ecryptfs_fasync()
287 lower_file = ecryptfs_file_to_lower(file); in ecryptfs_fasync()
294 ecryptfs_unlocked_ioctl(struct file *file, unsigned int cmd, unsigned long arg) in ecryptfs_unlocked_ioctl() argument
296 struct file *lower_file = ecryptfs_file_to_lower(file); in ecryptfs_unlocked_ioctl()
309 fsstack_copy_attr_all(file_inode(file), file_inode(lower_file)); in ecryptfs_unlocked_ioctl()
319 ecryptfs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg) in ecryptfs_compat_ioctl() argument
321 struct file *lower_file = ecryptfs_file_to_lower(file); in ecryptfs_compat_ioctl()
334 fsstack_copy_attr_all(file_inode(file), file_inode(lower_file)); in ecryptfs_compat_ioctl()