summaryrefslogtreecommitdiffstats
path: root/mm/filemap.c
diff options
context:
space:
mode:
authorMark Fasheh2007-05-08 09:27:10 +0200
committerLinus Torvalds2007-05-08 20:15:04 +0200
commitef51c97623b94f51e439ac91d2736aab3d1b6594 (patch)
tree5c020421f1e5a6e28b5a9f341fec32479a8ffb3a /mm/filemap.c
parentChar: cs5535_gpio, add MODULE_DEVICE_TABLE (diff)
downloadkernel-qcow2-linux-ef51c97623b94f51e439ac91d2736aab3d1b6594.tar.gz
kernel-qcow2-linux-ef51c97623b94f51e439ac91d2736aab3d1b6594.tar.xz
kernel-qcow2-linux-ef51c97623b94f51e439ac91d2736aab3d1b6594.zip
Remove do_sync_file_range()
Remove do_sync_file_range() and convert callers to just use do_sync_mapping_range(). Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com> Cc: Christoph Hellwig <hch@lst.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/filemap.c')
-rw-r--r--mm/filemap.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/mm/filemap.c b/mm/filemap.c
index 3e49fe13d6ac..9cbf4fea4a59 100644
--- a/mm/filemap.c
+++ b/mm/filemap.c
@@ -2309,10 +2309,10 @@ __generic_file_aio_write_nolock(struct kiocb *iocb, const struct iovec *iov,
* semantics.
*/
endbyte = pos + written_buffered - written - 1;
- err = do_sync_file_range(file, pos, endbyte,
- SYNC_FILE_RANGE_WAIT_BEFORE|
- SYNC_FILE_RANGE_WRITE|
- SYNC_FILE_RANGE_WAIT_AFTER);
+ err = do_sync_mapping_range(file->f_mapping, pos, endbyte,
+ SYNC_FILE_RANGE_WAIT_BEFORE|
+ SYNC_FILE_RANGE_WRITE|
+ SYNC_FILE_RANGE_WAIT_AFTER);
if (err == 0) {
written = written_buffered;
invalidate_mapping_pages(mapping,