Commit 59308602 authored by Alexander Zarochentsev's avatar Alexander Zarochentsev Committed by Linus Torvalds

[PATCH] reiserfs: use balance_dirty_pages_ratelimited_nr in reiserfs_file_write()

Use the new balance_dirty_pages_ratelimited_nr in reiserfs "largeio" file
write.
Signed-off-by: default avatarHans Reiser <reiser@namesys.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent c1cda48a
...@@ -1532,7 +1532,7 @@ static ssize_t reiserfs_file_write(struct file *file, /* the file we are going t ...@@ -1532,7 +1532,7 @@ static ssize_t reiserfs_file_write(struct file *file, /* the file we are going t
buf += write_bytes; buf += write_bytes;
*ppos = pos += write_bytes; *ppos = pos += write_bytes;
count -= write_bytes; count -= write_bytes;
balance_dirty_pages_ratelimited(inode->i_mapping); balance_dirty_pages_ratelimited_nr(inode->i_mapping, num_pages);
} }
/* this is only true on error */ /* this is only true on error */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment