aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYongqiang Yang <[email protected]>2011-10-26 05:00:19 -0400
committerTheodore Ts'o <[email protected]>2011-10-26 05:00:19 -0400
commitfcbb5515825f1bb20b7a6f75ec48bee61416f879 (patch)
tree1fbb172370314beb24129edb3d5e481d22bf7c76
parent6f8ff537266ee5396c920fb0c842a21df3055ff3 (diff)
ext4: let ext4_page_mkwrite stop started handle in failure
The started journal handle should be stopped in failure case. Signed-off-by: Yongqiang Yang <[email protected]> Signed-off-by: "Theodore Ts'o" <[email protected]> Acked-by: Jan Kara <[email protected]> Cc: [email protected]
-rw-r--r--fs/ext4/inode.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c
index 87ec615f0fd6..e4b26faac5ff 100644
--- a/fs/ext4/inode.c
+++ b/fs/ext4/inode.c
@@ -4791,6 +4791,7 @@ retry_alloc:
PAGE_CACHE_SIZE, NULL, do_journal_get_write_access)) {
unlock_page(page);
ret = VM_FAULT_SIGBUS;
+ ext4_journal_stop(handle);
goto out;
}
ext4_set_inode_state(inode, EXT4_STATE_JDATA);