Skip to content

Commit

Permalink
[PATCH] ext4 calls journal_stop
Browse files Browse the repository at this point in the history
journal_stop() is not defined for ext4; change to ext4_journal_stop().

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Randy Dunlap authored and Linus Torvalds committed Dec 8, 2006
1 parent bff19b1 commit 01a732e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/ext4/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -1232,7 +1232,7 @@ static int ext4_prepare_write(struct file *file, struct page *page,
from, to, NULL, do_journal_get_write_access);
if (ret)
/* fatal error, just put the handle and return */
journal_stop(handle);
ext4_journal_stop(handle);
}
return ret;

Expand Down

0 comments on commit 01a732e

Please sign in to comment.