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> 2013-09-22 16:27:52 -0400 committer: Al Viro <viro@zeniv.linux.org.uk> 2013-10-24 23:34:54 -0400 commit: 72c2d53192004845cbc19cd8a30b3212a9288140 parent: 22bd002ee76aa7d7a3393f39d977f6c106153c60
Commit Summary:
file->f_op is never NULL...
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/fs/binfmt_elf_fdpic.c b/fs/binfmt_elf_fdpic.c
index c166f325a183..ea4c6273b4a5 100644
--- a/fs/binfmt_elf_fdpic.c
+++ b/fs/binfmt_elf_fdpic.c
@@ -111,7 +111,7 @@ static int is_elf_fdpic(struct elfhdr *hdr, struct file *file)
 		return 0;
 	if (!elf_check_arch(hdr) || !elf_check_fdpic(hdr))
 		return 0;
-	if (!file->f_op || !file->f_op->mmap)
+	if (!file->f_op->mmap)
 		return 0;
 	return 1;
 }