aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/ext4/fsync.c2
-rw-r--r--fs/ext4/ialloc.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/fs/ext4/fsync.c b/fs/ext4/fsync.c
index 036f78f7a1ef..c942924a0645 100644
--- a/fs/ext4/fsync.c
+++ b/fs/ext4/fsync.c
@@ -75,7 +75,7 @@ static void dump_completed_IO(struct inode * inode)
75 * to written. 75 * to written.
76 * The function return the number of pending IOs on success. 76 * The function return the number of pending IOs on success.
77 */ 77 */
78extern int ext4_flush_completed_IO(struct inode *inode) 78int ext4_flush_completed_IO(struct inode *inode)
79{ 79{
80 ext4_io_end_t *io; 80 ext4_io_end_t *io;
81 struct ext4_inode_info *ei = EXT4_I(inode); 81 struct ext4_inode_info *ei = EXT4_I(inode);
diff --git a/fs/ext4/ialloc.c b/fs/ext4/ialloc.c
index 04219988e75f..e007fecdaedc 100644
--- a/fs/ext4/ialloc.c
+++ b/fs/ext4/ialloc.c
@@ -1100,7 +1100,7 @@ unsigned long ext4_count_dirs(struct super_block * sb)
1100 * inode allocation from the current group, so we take alloc_sem lock, to 1100 * inode allocation from the current group, so we take alloc_sem lock, to
1101 * block ext4_claim_inode until we are finished. 1101 * block ext4_claim_inode until we are finished.
1102 */ 1102 */
1103extern int ext4_init_inode_table(struct super_block *sb, ext4_group_t group, 1103int ext4_init_inode_table(struct super_block *sb, ext4_group_t group,
1104 int barrier) 1104 int barrier)
1105{ 1105{
1106 struct ext4_group_info *grp = ext4_get_group_info(sb, group); 1106 struct ext4_group_info *grp = ext4_get_group_info(sb, group);