diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2006-12-08 05:35:52 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-08 11:28:37 -0500 |
commit | 01a732eb22dab153732b94962467eaabb1fd3797 (patch) | |
tree | 08b8dbc1a87fb4d0e9e6fd65f7781b04c2684428 | |
parent | bff19b1d0b2c62882ca4b8f900b52f410c09e967 (diff) |
[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>
-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 1d85d4ec9598..a127cc03c9fa 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c | |||
@@ -1232,7 +1232,7 @@ retry: | |||
1232 | from, to, NULL, do_journal_get_write_access); | 1232 | from, to, NULL, do_journal_get_write_access); |
1233 | if (ret) | 1233 | if (ret) |
1234 | /* fatal error, just put the handle and return */ | 1234 | /* fatal error, just put the handle and return */ |
1235 | journal_stop(handle); | 1235 | ext4_journal_stop(handle); |
1236 | } | 1236 | } |
1237 | return ret; | 1237 | return ret; |
1238 | 1238 | ||