]> git.baikalelectronics.ru Git - kernel.git/commit
ext4: fix journal ref count in move_extent_par_page
authorPeng Tao <bergwolf@gmail.com>
Tue, 11 Aug 2009 03:05:28 +0000 (23:05 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Tue, 11 Aug 2009 03:05:28 +0000 (23:05 -0400)
commit50e716f91b6732cf5217b4c2c8b046617689b1c6
treea00e1c0b8a773f88bcb3ae81758ec4528b73405d
parente9799099efed23c7779afbb2f0c9fafbf8feff29
ext4: fix journal ref count in move_extent_par_page

move_extent_par_page calls a_ops->write_begin() to increase journal
handler's reference count. However, if either mext_replace_branches()
or ext4_get_block fails, the increased reference count isn't
decreased. This will cause a later attempt to umount of the fs to hang
forever. The patch addresses the issue by calling ext4_journal_stop()
if page is not NULL (which means a_ops->write_end() isn't invoked).

Signed-off-by: Peng Tao <bergwolf@gmail.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
fs/ext4/move_extent.c