ext4: use redirty_page_for_writepage() in ext4_bio_write_page()
authorJan Kara <jack@suse.cz>
Mon, 28 Jan 2013 14:32:54 +0000 (09:32 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Mon, 28 Jan 2013 14:32:54 +0000 (09:32 -0500)
commit1ae48a6354a364413d372df1525d523a3fb4fb8c
tree626a676b8271a404f4451f2948c9f71a4078609f
parent36ade451a5d736e61ac8302b64aacc5acb5e440f
ext4: use redirty_page_for_writepage() in ext4_bio_write_page()

When we cannot write a page we should use redirty_page_for_writepage()
instead of plain set_page_dirty(). That tells writeback code we have
problems, redirties only the page (redirtying buffers is not needed),
and updates mm accounting of failed page writes.

Also move clearing of buffer dirty flag after io_submit_add_bh(). At that
moment we are sure buffer will be going to disk.

Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
fs/ext4/page-io.c