diff options
author | Trond Myklebust <[email protected]> | 2013-08-05 13:26:31 -0400 |
---|---|---|
committer | Trond Myklebust <[email protected]> | 2013-08-07 17:07:40 -0400 |
commit | f8806c843f88a6b7d657cf24c3682bc2efda6fdb (patch) | |
tree | 6ac028b704a1f3c78f7dc98cc5fbf1de5e3a543c | |
parent | 786615bc1ce84150ded80daea6bd9f6297f48e73 (diff) |
NFS: Fix writeback performance issue on cache invalidation
If a cache invalidation is triggered, and we happen to have a lot of
writebacks cached at the time, then the call to invalidate_inode_pages2()
will end up calling ->launder_page() on each and every dirty page in order
to sync its contents to disk, thus defeating write coalescing.
The following patch ensures that we try to sync the inode to disk before
calling invalidate_inode_pages2() so that we do the writeback as efficiently
as possible.
Reported-by: William Dauchy <[email protected]>
Reported-by: Pascal Bouchareine <[email protected]>
Signed-off-by: Trond Myklebust <[email protected]>
Tested-by: William Dauchy <[email protected]>
Reviewed-by: Jeff Layton <[email protected]>
-rw-r--r-- | fs/nfs/inode.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/fs/nfs/inode.c b/fs/nfs/inode.c index af6e806044d7..3ea4f641effc 100644 --- a/fs/nfs/inode.c +++ b/fs/nfs/inode.c @@ -963,9 +963,15 @@ EXPORT_SYMBOL_GPL(nfs_revalidate_inode); static int nfs_invalidate_mapping(struct inode *inode, struct address_space *mapping) { struct nfs_inode *nfsi = NFS_I(inode); - + int ret; + if (mapping->nrpages != 0) { - int ret = invalidate_inode_pages2(mapping); + if (S_ISREG(inode->i_mode)) { + ret = nfs_sync_mapping(mapping); + if (ret < 0) + return ret; + } + ret = invalidate_inode_pages2(mapping); if (ret < 0) return ret; } |