diff options
Diffstat (limited to 'fs/ext4/ext4.h')
-rw-r--r-- | fs/ext4/ext4.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/fs/ext4/ext4.h b/fs/ext4/ext4.h index d8ec824f5a25..5a41881cafca 100644 --- a/fs/ext4/ext4.h +++ b/fs/ext4/ext4.h | |||
@@ -1639,9 +1639,13 @@ extern void __ext4_warning(struct super_block *, const char *, | |||
1639 | #define ext4_warning(sb, message...) __ext4_warning(sb, __func__, ## message) | 1639 | #define ext4_warning(sb, message...) __ext4_warning(sb, __func__, ## message) |
1640 | extern void ext4_msg(struct super_block *, const char *, const char *, ...) | 1640 | extern void ext4_msg(struct super_block *, const char *, const char *, ...) |
1641 | __attribute__ ((format (printf, 3, 4))); | 1641 | __attribute__ ((format (printf, 3, 4))); |
1642 | extern void ext4_grp_locked_error(struct super_block *, ext4_group_t, | 1642 | extern void __ext4_grp_locked_error(const char *, unsigned int, \ |
1643 | const char *, const char *, ...) | 1643 | struct super_block *, ext4_group_t, \ |
1644 | __attribute__ ((format (printf, 4, 5))); | 1644 | unsigned long, ext4_fsblk_t, \ |
1645 | const char *, ...) | ||
1646 | __attribute__ ((format (printf, 7, 8))); | ||
1647 | #define ext4_grp_locked_error(sb, grp, message...) \ | ||
1648 | __ext4_grp_locked_error(__func__, __LINE__, (sb), (grp), ## message) | ||
1645 | extern void ext4_update_dynamic_rev(struct super_block *sb); | 1649 | extern void ext4_update_dynamic_rev(struct super_block *sb); |
1646 | extern int ext4_update_compat_feature(handle_t *handle, struct super_block *sb, | 1650 | extern int ext4_update_compat_feature(handle_t *handle, struct super_block *sb, |
1647 | __u32 compat); | 1651 | __u32 compat); |