diff options
author | Theodore Ts'o <tytso@mit.edu> | 2013-02-08 13:00:31 -0500 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2013-02-08 13:00:31 -0500 |
commit | 722887ddc8982ff40e40b650fbca9ae1e56259bc (patch) | |
tree | da828f9362ed7983a4162a8b1c1404e8b628d704 /fs/ext4/ext4.h | |
parent | 343d9c283c9847da043fda3e76e3197f27b667dd (diff) | |
download | linux-722887ddc8982ff40e40b650fbca9ae1e56259bc.tar.gz linux-722887ddc8982ff40e40b650fbca9ae1e56259bc.tar.bz2 linux-722887ddc8982ff40e40b650fbca9ae1e56259bc.zip |
ext4: move the jbd2 wrapper functions out of super.c
Move the jbd2 wrapper functions which start and stop handles out of
super.c, where they don't really logically belong, and into
ext4_jbd2.c.
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/ext4.h')
-rw-r--r-- | fs/ext4/ext4.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/ext4/ext4.h b/fs/ext4/ext4.h index d93393eb5f2d..a5ae87c51401 100644 --- a/fs/ext4/ext4.h +++ b/fs/ext4/ext4.h @@ -2149,6 +2149,8 @@ extern void *ext4_kvzalloc(size_t size, gfp_t flags); extern void ext4_kvfree(void *ptr); extern int ext4_alloc_flex_bg_array(struct super_block *sb, ext4_group_t ngroup); +extern const char *ext4_decode_error(struct super_block *sb, int errno, + char nbuf[16]); extern __printf(4, 5) void __ext4_error(struct super_block *, const char *, unsigned int, const char *, ...); |