diff options
author | Trond Myklebust <trond.myklebust@primarydata.com> | 2016-05-16 17:42:45 -0400 |
---|---|---|
committer | Anna Schumaker <Anna.Schumaker@Netapp.com> | 2016-05-17 15:48:07 -0400 |
commit | cca588d6c835e21fd7a3e02a964ce5fe09fdad26 (patch) | |
tree | 5f7c0e7294cc6ef662c050f3204e65e0e0d65246 /fs/nfs/write.c | |
parent | abf4e13cc1e16ed83ec8363d44f76149034b2851 (diff) | |
download | op-kernel-dev-cca588d6c835e21fd7a3e02a964ce5fe09fdad26.zip op-kernel-dev-cca588d6c835e21fd7a3e02a964ce5fe09fdad26.tar.gz |
NFS: Reclaim writes via writepage are opportunistic
No need to make them a priority any more, or to make them succeed.
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Diffstat (limited to 'fs/nfs/write.c')
-rw-r--r-- | fs/nfs/write.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/nfs/write.c b/fs/nfs/write.c index e18a97a..4dac51b 100644 --- a/fs/nfs/write.c +++ b/fs/nfs/write.c @@ -245,8 +245,7 @@ static void nfs_mark_uptodate(struct nfs_page *req) static int wb_priority(struct writeback_control *wbc) { int ret = 0; - if (wbc->for_reclaim) - return FLUSH_HIGHPRI | FLUSH_COND_STABLE; + if (wbc->sync_mode == WB_SYNC_ALL) ret = FLUSH_COND_STABLE; return ret; |