VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   32 Branches   54 Tags
author: Al Viro <viro@zeniv.linux.org.uk> 2014-09-02 17:31:28 -0400 committer: Al Viro <viro@zeniv.linux.org.uk> 2014-10-09 02:39:12 -0400 commit: c2e3f5d5f4620bb6568bc559f712ce80222e20cb parent: 765d368217715c794f767d396d8cea16502d823f
Commit Summary:
ecryptfs: ->f_op is never NULL
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/fs/ecryptfs/file.c b/fs/ecryptfs/file.c
index db0fad3269c0..4ffa35e96761 100644
--- a/fs/ecryptfs/file.c
+++ b/fs/ecryptfs/file.c
@@ -327,7 +327,7 @@ ecryptfs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
 	struct file *lower_file = ecryptfs_file_to_lower(file);
 	long rc = -ENOIOCTLCMD;
 
-	if (lower_file->f_op && lower_file->f_op->compat_ioctl)
+	if (lower_file->f_op->compat_ioctl)
 		rc = lower_file->f_op->compat_ioctl(lower_file, cmd, arg);
 	return rc;
 }