From: Randy Dunlap Date: Fri, 8 Dec 2006 10:35:52 +0000 (-0800) Subject: [PATCH] ext4 calls journal_stop X-Git-Tag: v2.6.20-rc1~34^2~408 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=01a732eb22dab153732b94962467eaabb1fd3797;p=linux-2.6-omap-h63xx.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 1d85d4ec959..a127cc03c9f 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;