Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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: 1543b4c5071c ("fs/9p: remove writeback fid and fix per-file modes")
Reviewed-by: Christian Schoenebeck <linux_oss@crudebyte.com>
Signed-off-by: Eric Van Hensbergen <ericvh@kernel.org>

-1
-1
fs/9p/vfs_file.c
··· 506 506 507 507 if (!(v9ses->cache & CACHE_WRITEBACK)) { 508 508 p9_debug(P9_DEBUG_CACHE, "(read-only mmap mode)"); 509 - invalidate_inode_pages2(filp->f_mapping); 510 509 return generic_file_readonly_mmap(filp, vma); 511 510 } 512 511