aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs/inode.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2016-03-02 17:35:55 +0100
committerTrond Myklebust <trond.myklebust@primarydata.com>2016-03-16 15:42:43 -0400
commit95d9f6c3edd60aab1bb163f081262645f8bb8dc0 (patch)
tree50a83013a106d7d774b594a54dfe81180a3d9f9c /fs/nfs/inode.c
parent4ff79bc7098fab71e5957d48d31d2036c234e506 (diff)
downloadlinux-95d9f6c3edd60aab1bb163f081262645f8bb8dc0.tar.gz
nfs: remove nfs_inode_dio_wait
Just call inode_dio_wait directly instead of through a pointless wrapper. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Diffstat (limited to 'fs/nfs/inode.c')
-rw-r--r--fs/nfs/inode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/inode.c b/fs/nfs/inode.c
index 86faecf8f328f..33d18c4119057 100644
--- a/fs/nfs/inode.c
+++ b/fs/nfs/inode.c
@@ -141,7 +141,7 @@ void nfs_evict_inode(struct inode *inode)
int nfs_sync_inode(struct inode *inode)
{
- nfs_inode_dio_wait(inode);
+ inode_dio_wait(inode);
return nfs_wb_all(inode);
}
EXPORT_SYMBOL_GPL(nfs_sync_inode);