From: Randy Dunlap Date: Fri, 8 Dec 2006 10:35:52 +0000 (-0800) Subject: [PATCH] ext4 calls journal_stop X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=01a732eb22dab153732b94962467eaabb1fd3797;p=linux-beck.git [PATCH] ext4 calls journal_stop journal_stop() is not defined for ext4; change to ext4_journal_stop(). Signed-off-by: Randy Dunlap Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index 1d85d4ec9598..a127cc03c9fa 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c @@ -1232,7 +1232,7 @@ retry: 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;