diff options
| author | Andrew Morton <akpm@zip.com.au> | 2002-05-27 05:13:14 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.transmeta.com> | 2002-05-27 05:13:14 -0700 |
| commit | 7d608fac351b06ae0192bba9e116a965c2f35c5d (patch) | |
| tree | 0d39b645f5d56b247c8ebc0fcfc0fd5ea8b8d1a2 /mm/filemap.c | |
| parent | 1dd747c08982737989e197b44d08751b79496ad6 (diff) | |
[PATCH] rename writeback_mapping to writepages
Spot the difference:
aops.readpage
aops.readpages
aops.writepage
aops.writeback_mapping
The patch renames `writeback_mapping' to `writepages'
Diffstat (limited to 'mm/filemap.c')
| -rw-r--r-- | mm/filemap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/filemap.c b/mm/filemap.c index 5bf85ca92698..8c9411b52f3d 100644 --- a/mm/filemap.c +++ b/mm/filemap.c @@ -463,7 +463,7 @@ EXPORT_SYMBOL(fail_writepage); */ int filemap_fdatawrite(struct address_space *mapping) { - return writeback_mapping(mapping, NULL); + return do_writepages(mapping, NULL); } /** |
