diff options
Diffstat (limited to 'fs/ext4/ext4_jbd2.h')
-rw-r--r-- | fs/ext4/ext4_jbd2.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fs/ext4/ext4_jbd2.h b/fs/ext4/ext4_jbd2.h index dade0c024797..8ae8168900bf 100644 --- a/fs/ext4/ext4_jbd2.h +++ b/fs/ext4/ext4_jbd2.h | |||
@@ -141,6 +141,9 @@ int __ext4_journal_get_create_access(const char *where, | |||
141 | int __ext4_handle_dirty_metadata(const char *where, handle_t *handle, | 141 | int __ext4_handle_dirty_metadata(const char *where, handle_t *handle, |
142 | struct inode *inode, struct buffer_head *bh); | 142 | struct inode *inode, struct buffer_head *bh); |
143 | 143 | ||
144 | int __ext4_handle_dirty_super(const char *where, handle_t *handle, | ||
145 | struct super_block *sb); | ||
146 | |||
144 | #define ext4_journal_get_undo_access(handle, bh) \ | 147 | #define ext4_journal_get_undo_access(handle, bh) \ |
145 | __ext4_journal_get_undo_access(__func__, (handle), (bh)) | 148 | __ext4_journal_get_undo_access(__func__, (handle), (bh)) |
146 | #define ext4_journal_get_write_access(handle, bh) \ | 149 | #define ext4_journal_get_write_access(handle, bh) \ |
@@ -152,6 +155,8 @@ int __ext4_handle_dirty_metadata(const char *where, handle_t *handle, | |||
152 | __ext4_journal_get_create_access(__func__, (handle), (bh)) | 155 | __ext4_journal_get_create_access(__func__, (handle), (bh)) |
153 | #define ext4_handle_dirty_metadata(handle, inode, bh) \ | 156 | #define ext4_handle_dirty_metadata(handle, inode, bh) \ |
154 | __ext4_handle_dirty_metadata(__func__, (handle), (inode), (bh)) | 157 | __ext4_handle_dirty_metadata(__func__, (handle), (inode), (bh)) |
158 | #define ext4_handle_dirty_super(handle, sb) \ | ||
159 | __ext4_handle_dirty_super(__func__, (handle), (sb)) | ||
155 | 160 | ||
156 | handle_t *ext4_journal_start_sb(struct super_block *sb, int nblocks); | 161 | handle_t *ext4_journal_start_sb(struct super_block *sb, int nblocks); |
157 | int __ext4_journal_stop(const char *where, handle_t *handle); | 162 | int __ext4_journal_stop(const char *where, handle_t *handle); |