diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2006-12-08 10:35:52 (GMT) |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-08 16:28:37 (GMT) |
commit | 01a732eb22dab153732b94962467eaabb1fd3797 (patch) | |
tree | 08b8dbc1a87fb4d0e9e6fd65f7781b04c2684428 /fs/ext4/inode.c | |
parent | bff19b1d0b2c62882ca4b8f900b52f410c09e967 (diff) | |
download | linux-fsl-qoriq-01a732eb22dab153732b94962467eaabb1fd3797.tar.xz |
[PATCH] ext4 calls journal_stop
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>
Diffstat (limited to 'fs/ext4/inode.c')
-rw-r--r-- | fs/ext4/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index 1d85d4e..a127cc0 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; |