aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/filesystems
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2009-09-30 22:16:33 +0200
committerJan Kara <jack@suse.cz>2009-12-10 15:02:50 +0100
commit94004ed726f38a841cc51f97c4a3f9eda9fbd0d9 (patch)
tree786689e9fc9e686a5b54c1a1b1efcbb7d043b5ab /Documentation/filesystems
parentvfs: Implement proper O_SYNC semantics (diff)
downloadlinux-dev-94004ed726f38a841cc51f97c4a3f9eda9fbd0d9.tar.xz
linux-dev-94004ed726f38a841cc51f97c4a3f9eda9fbd0d9.zip
kill wait_on_page_writeback_range
All callers really want the more logical filemap_fdatawait_range interface, so convert them to use it and merge wait_on_page_writeback_range into filemap_fdatawait_range. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'Documentation/filesystems')
-rw-r--r--Documentation/filesystems/vfs.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/filesystems/vfs.txt b/Documentation/filesystems/vfs.txt
index 623f094c9d8d..3de2f32edd90 100644
--- a/Documentation/filesystems/vfs.txt
+++ b/Documentation/filesystems/vfs.txt
@@ -472,7 +472,7 @@ __sync_single_inode) to check if ->writepages has been successful in
writing out the whole address_space.
The Writeback tag is used by filemap*wait* and sync_page* functions,
-via wait_on_page_writeback_range, to wait for all writeback to
+via filemap_fdatawait_range, to wait for all writeback to
complete. While waiting ->sync_page (if defined) will be called on
each page that is found to require writeback.