Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

[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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1532,7 +1532,7 @@ static ssize_t reiserfs_file_write(struct file *file, /* the file we are going t
		buf += write_bytes;
		*ppos = pos += 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 */