lower_file       1347 fs/ecryptfs/crypto.c 		ecryptfs_inode_to_private(ecryptfs_inode)->lower_file->f_path.dentry;
lower_file         71 fs/ecryptfs/ecryptfs_kernel.h 		struct file *lower_file;
lower_file        257 fs/ecryptfs/ecryptfs_kernel.h 	struct file *lower_file;
lower_file        450 fs/ecryptfs/ecryptfs_kernel.h ecryptfs_set_file_lower(struct file *file, struct file *lower_file)
lower_file        453 fs/ecryptfs/ecryptfs_kernel.h 		lower_file;
lower_file        699 fs/ecryptfs/ecryptfs_kernel.h int ecryptfs_privileged_open(struct file **lower_file,
lower_file        104 fs/ecryptfs/file.c 	struct file *lower_file;
lower_file        111 fs/ecryptfs/file.c 	lower_file = ecryptfs_file_to_lower(file);
lower_file        112 fs/ecryptfs/file.c 	rc = iterate_dir(lower_file, &buf.ctx);
lower_file        120 fs/ecryptfs/file.c 					file_inode(lower_file));
lower_file        171 fs/ecryptfs/file.c 	struct file *lower_file = ecryptfs_file_to_lower(file);
lower_file        177 fs/ecryptfs/file.c 	if (!lower_file->f_op->mmap)
lower_file        226 fs/ecryptfs/file.c 	if ((ecryptfs_inode_to_private(inode)->lower_file->f_flags & O_ACCMODE)
lower_file        234 fs/ecryptfs/file.c 		file, ecryptfs_inode_to_private(inode)->lower_file);
lower_file        266 fs/ecryptfs/file.c 	struct file *lower_file;
lower_file        276 fs/ecryptfs/file.c 	lower_file = dentry_open(ecryptfs_dentry_to_lower_path(ecryptfs_dentry),
lower_file        278 fs/ecryptfs/file.c 	if (IS_ERR(lower_file)) {
lower_file        282 fs/ecryptfs/file.c 			ecryptfs_dentry, PTR_ERR(lower_file));
lower_file        284 fs/ecryptfs/file.c 		return PTR_ERR(lower_file);
lower_file        286 fs/ecryptfs/file.c 	ecryptfs_set_file_lower(file, lower_file);
lower_file        292 fs/ecryptfs/file.c 	struct file *lower_file = ecryptfs_file_to_lower(file);
lower_file        294 fs/ecryptfs/file.c 	if (lower_file->f_op->flush) {
lower_file        296 fs/ecryptfs/file.c 		return lower_file->f_op->flush(lower_file, td);
lower_file        338 fs/ecryptfs/file.c 	struct file *lower_file = NULL;
lower_file        340 fs/ecryptfs/file.c 	lower_file = ecryptfs_file_to_lower(file);
lower_file        341 fs/ecryptfs/file.c 	if (lower_file->f_op->fasync)
lower_file        342 fs/ecryptfs/file.c 		rc = lower_file->f_op->fasync(fd, lower_file, flag);
lower_file        349 fs/ecryptfs/file.c 	struct file *lower_file = ecryptfs_file_to_lower(file);
lower_file        352 fs/ecryptfs/file.c 	if (!lower_file->f_op->unlocked_ioctl)
lower_file        361 fs/ecryptfs/file.c 		rc = lower_file->f_op->unlocked_ioctl(lower_file, cmd, arg);
lower_file        362 fs/ecryptfs/file.c 		fsstack_copy_attr_all(file_inode(file), file_inode(lower_file));
lower_file        374 fs/ecryptfs/file.c 	struct file *lower_file = ecryptfs_file_to_lower(file);
lower_file        377 fs/ecryptfs/file.c 	if (!lower_file->f_op->compat_ioctl)
lower_file        385 fs/ecryptfs/file.c 		rc = lower_file->f_op->compat_ioctl(lower_file, cmd, arg);
lower_file        386 fs/ecryptfs/file.c 		fsstack_copy_attr_all(file_inode(file), file_inode(lower_file));
lower_file         17 fs/ecryptfs/kthread.c 	struct file **lower_file;
lower_file         62 fs/ecryptfs/kthread.c 			*req->lower_file = dentry_open(&req->path,
lower_file         98 fs/ecryptfs/kthread.c 		*req->lower_file = ERR_PTR(-EIO);
lower_file        116 fs/ecryptfs/kthread.c int ecryptfs_privileged_open(struct file **lower_file,
lower_file        126 fs/ecryptfs/kthread.c 	req.lower_file = lower_file;
lower_file        134 fs/ecryptfs/kthread.c 	(*lower_file) = dentry_open(&req.path, flags, cred);
lower_file        135 fs/ecryptfs/kthread.c 	if (!IS_ERR(*lower_file))
lower_file        138 fs/ecryptfs/kthread.c 		rc = PTR_ERR((*lower_file));
lower_file        154 fs/ecryptfs/kthread.c 	if (IS_ERR(*lower_file))
lower_file        155 fs/ecryptfs/kthread.c 		rc = PTR_ERR(*lower_file);
lower_file        105 fs/ecryptfs/main.c 				    struct file **lower_file)
lower_file        111 fs/ecryptfs/main.c 	rc = ecryptfs_privileged_open(lower_file, path->dentry, path->mnt,
lower_file        117 fs/ecryptfs/main.c 		(*lower_file) = NULL;
lower_file        134 fs/ecryptfs/main.c 					      &inode_info->lower_file);
lower_file        150 fs/ecryptfs/main.c 		fput(inode_info->lower_file);
lower_file        151 fs/ecryptfs/main.c 		inode_info->lower_file = NULL;
lower_file        408 fs/ecryptfs/mmap.c 		ecryptfs_inode_to_private(ecryptfs_inode)->lower_file->f_path.dentry;
lower_file         30 fs/ecryptfs/read_write.c 	struct file *lower_file;
lower_file         33 fs/ecryptfs/read_write.c 	lower_file = ecryptfs_inode_to_private(ecryptfs_inode)->lower_file;
lower_file         34 fs/ecryptfs/read_write.c 	if (!lower_file)
lower_file         36 fs/ecryptfs/read_write.c 	rc = kernel_write(lower_file, data, size, &offset);
lower_file        222 fs/ecryptfs/read_write.c 	struct file *lower_file;
lower_file        223 fs/ecryptfs/read_write.c 	lower_file = ecryptfs_inode_to_private(ecryptfs_inode)->lower_file;
lower_file        224 fs/ecryptfs/read_write.c 	if (!lower_file)
lower_file        226 fs/ecryptfs/read_write.c 	return kernel_read(lower_file, data, size, &offset);
lower_file         50 fs/ecryptfs/super.c 	inode_info->lower_file = NULL;
lower_file         78 fs/ecryptfs/super.c 	BUG_ON(inode_info->lower_file);