aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs/write.c
diff options
context:
space:
mode:
authorAnna Schumaker <Anna.Schumaker@netapp.com>2015-07-13 14:01:32 -0400
committerTrond Myklebust <trond.myklebust@primarydata.com>2015-08-17 14:32:32 -0400
commitae09c31f66cc673bb8c64a5dbfdc04ab67f66d7e (patch)
tree0b7606e2db94be907bceccb2feeb842c5a7f13ef /fs/nfs/write.c
parent3f10a6af4b577da2117907ac8420f27af81d57de (diff)
NFS: Rename nfs_commit_unstable_pages() to nfs_write_inode()
All nfs_write_inode() does is pass its arguments to nfs_commit_unstable_pages(). Let's cut out the middle man and have nfs_write_pages() do the work directly. Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com> Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Diffstat (limited to 'fs/nfs/write.c')
-rw-r--r--fs/nfs/write.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/fs/nfs/write.c b/fs/nfs/write.c
index fdee9270ca15..388f48079c43 100644
--- a/fs/nfs/write.c
+++ b/fs/nfs/write.c
@@ -1812,7 +1812,7 @@ out_mark_dirty:
1812 return res; 1812 return res;
1813} 1813}
1814 1814
1815static int nfs_commit_unstable_pages(struct inode *inode, struct writeback_control *wbc) 1815int nfs_write_inode(struct inode *inode, struct writeback_control *wbc)
1816{ 1816{
1817 struct nfs_inode *nfsi = NFS_I(inode); 1817 struct nfs_inode *nfsi = NFS_I(inode);
1818 int flags = FLUSH_SYNC; 1818 int flags = FLUSH_SYNC;
@@ -1847,11 +1847,6 @@ out_mark_dirty:
1847 __mark_inode_dirty(inode, I_DIRTY_DATASYNC); 1847 __mark_inode_dirty(inode, I_DIRTY_DATASYNC);
1848 return ret; 1848 return ret;
1849} 1849}
1850
1851int nfs_write_inode(struct inode *inode, struct writeback_control *wbc)
1852{
1853 return nfs_commit_unstable_pages(inode, wbc);
1854}
1855EXPORT_SYMBOL_GPL(nfs_write_inode); 1850EXPORT_SYMBOL_GPL(nfs_write_inode);
1856 1851
1857/* 1852/*