Unverified Commit 350cd9b9 authored by Eric Van Hensbergen's avatar Eric Van Hensbergen
Browse files

fs/9p: remove unnecessary invalidate_inode_pages2



There was an invalidate_inode_pages2 added to readonly mmap path
that is unnecessary since that path is only entered when writeback
cache is disabled on mount.

Cc: stable@vger.kernel.org
Fixes: 1543b4c5 ("fs/9p: remove writeback fid and fix per-file modes")
Reviewed-by: default avatarChristian Schoenebeck <linux_oss@crudebyte.com>
Signed-off-by: default avatarEric Van Hensbergen <ericvh@kernel.org>
parent 09430aba
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -506,7 +506,6 @@ v9fs_file_mmap(struct file *filp, struct vm_area_struct *vma)

	if (!(v9ses->cache & CACHE_WRITEBACK)) {
		p9_debug(P9_DEBUG_CACHE, "(read-only mmap mode)");
		invalidate_inode_pages2(filp->f_mapping);
		return generic_file_readonly_mmap(filp, vma);
	}