]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
xfs: remove xfs_wait_on_pages()
authorDave Chinner <dchinner@redhat.com>
Mon, 12 Nov 2012 11:53:55 +0000 (22:53 +1100)
committerBen Myers <bpm@sgi.com>
Wed, 14 Nov 2012 21:12:20 +0000 (15:12 -0600)
It's just a simple wrapper around a VFS function that is only called
by another function in xfs_fs_subr.c. Remove it and call the VFS
function directly.

Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Andrew Dahl <adahl@sgi.com>
Signed-off-by: Ben Myers <bpm@sgi.com>
fs/xfs/xfs_fs_subr.c
fs/xfs/xfs_vnodeops.h

index d49de3d70456f1b2ea31774f559657d29ca8e812..33658234dfc50aa217bda1cd55f2fe0d2c569d0b 100644 (file)
@@ -62,23 +62,9 @@ xfs_flush_pages(
                                last == -1 ? LLONG_MAX : last);
        if (flags & XBF_ASYNC)
                return ret;
-       ret2 = xfs_wait_on_pages(ip, first, last);
+       ret2 = -filemap_fdatawait_range(mapping, first,
+                               last == -1 ? XFS_ISIZE(ip) - 1 : last);
        if (!ret)
                ret = ret2;
        return ret;
 }
-
-int
-xfs_wait_on_pages(
-       xfs_inode_t     *ip,
-       xfs_off_t       first,
-       xfs_off_t       last)
-{
-       struct address_space *mapping = VFS_I(ip)->i_mapping;
-
-       if (mapping_tagged(mapping, PAGECACHE_TAG_WRITEBACK)) {
-               return -filemap_fdatawait_range(mapping, first,
-                                       last == -1 ? XFS_ISIZE(ip) - 1 : last);
-       }
-       return 0;
-}
index d48141d6bc3b5dd83f07b0ad5e3259727d80fa11..c8ad48b61a25246b2aef4b109687dac2e2b6bef1 100644 (file)
@@ -52,7 +52,6 @@ int xfs_flushinval_pages(struct xfs_inode *ip, xfs_off_t first,
                xfs_off_t last, int fiopt);
 int xfs_flush_pages(struct xfs_inode *ip, xfs_off_t first,
                xfs_off_t last, uint64_t flags, int fiopt);
-int xfs_wait_on_pages(struct xfs_inode *ip, xfs_off_t first, xfs_off_t last);
 
 int xfs_zero_eof(struct xfs_inode *, xfs_off_t, xfs_fsize_t);
 int xfs_free_eofblocks(struct xfs_mount *, struct xfs_inode *, bool);