diff options
author | Christoph Hellwig <hch@lst.de> | 2016-03-02 17:35:55 +0100 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@primarydata.com> | 2016-03-16 15:42:43 -0400 |
commit | 95d9f6c3edd60aab1bb163f081262645f8bb8dc0 (patch) | |
tree | 50a83013a106d7d774b594a54dfe81180a3d9f9c /fs/nfs/inode.c | |
parent | 4ff79bc7098fab71e5957d48d31d2036c234e506 (diff) | |
download | linux-95d9f6c3edd60aab1bb163f081262645f8bb8dc0.tar.gz linux-95d9f6c3edd60aab1bb163f081262645f8bb8dc0.tar.bz2 linux-95d9f6c3edd60aab1bb163f081262645f8bb8dc0.zip |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/inode.c b/fs/nfs/inode.c index 86faecf8f328..33d18c411905 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); |