Index: linux-3.12.39-47.1/fs/ext4/ext4.h =================================================================== --- linux-3.12.39-47.1.orig/fs/ext4/ext4.h +++ linux-3.12.39-47.1/fs/ext4/ext4.h @@ -1431,6 +1431,8 @@ static inline void ext4_clear_state_flag #define NEXT_ORPHAN(inode) EXT4_I(inode)->i_dtime +#define JOURNAL_START_HAS_3ARGS 1 + /* * Codes for operating systems */ @@ -2694,6 +2696,11 @@ struct ext4_extent; extern int ext4_ext_tree_init(handle_t *handle, struct inode *); extern int ext4_ext_writepage_trans_blocks(struct inode *, int); +extern struct buffer_head *ext4_read_inode_bitmap(struct super_block *sb, + ext4_group_t block_group); +extern struct buffer_head *ext4_append(handle_t *handle, + struct inode *inode, + ext4_lblk_t *block); extern int ext4_ext_index_trans_blocks(struct inode *inode, int extents); extern int ext4_ext_map_blocks(handle_t *handle, struct inode *inode, struct ext4_map_blocks *map, int flags); Index: linux-3.12.39-47.1/fs/ext4/namei.c =================================================================== --- linux-3.12.39-47.1.orig/fs/ext4/namei.c +++ linux-3.12.39-47.1/fs/ext4/namei.c @@ -48,7 +48,7 @@ #define NAMEI_RA_BLOCKS 4 #define NAMEI_RA_SIZE (NAMEI_RA_CHUNKS * NAMEI_RA_BLOCKS) -static struct buffer_head *ext4_append(handle_t *handle, +struct buffer_head *ext4_append(handle_t *handle, struct inode *inode, ext4_lblk_t *block) { @@ -71,6 +2200,7 @@ out: return ERR_PTR(err); inode->i_size += inode->i_sb->s_blocksize; EXT4_I(inode)->i_disksize = inode->i_size; + BUFFER_TRACE(bh, "get_write_access"); err = ext4_journal_get_write_access(handle, bh); if (err) { brelse(bh); @@ -154,6 +154,7 @@ static struct buffer_head *__ext4_read_d } return bh; } +EXPORT_SYMBOL(ext4_append); #ifndef assert #define assert(test) J_ASSERT(test) @@ -2199,7 +2200,7 @@ out: * DIR_NLINK feature is set if 1) nlinks > EXT4_LINK_MAX or 2) nlinks == 2, * since this indicates that nlinks count was previously 1. */ -static void ext4_inc_count(handle_t *handle, struct inode *inode) +void ext4_inc_count(handle_t *handle, struct inode *inode) { inc_nlink(inode); if (is_dx(inode) && inode->i_nlink > 1) { @@ -2211,16 +2212,18 @@ static void ext4_inc_count(handle_t *han } } } +EXPORT_SYMBOL(ext4_inc_count); /* * If a directory had nlink == 1, then we should let it be 1. This indicates * directory has >EXT4_LINK_MAX subdirs. */ -static void ext4_dec_count(handle_t *handle, struct inode *inode) +void ext4_dec_count(handle_t *handle, struct inode *inode) { if (!S_ISDIR(inode->i_mode) || inode->i_nlink > 2) drop_nlink(inode); } +EXPORT_SYMBOL(ext4_dec_count); static int ext4_add_nondir(handle_t *handle, Index: linux-3.12.39-47.1/fs/ext4/ialloc.c =================================================================== --- linux-3.12.39-47.1.orig/fs/ext4/ialloc.c +++ linux-3.12.39-47.1/fs/ext4/ialloc.c @@ -109,7 +109,7 @@ void ext4_end_bitmap_read(struct buffer_ * * Return buffer_head of bitmap on success or NULL. */ -static struct buffer_head * +struct buffer_head * ext4_read_inode_bitmap(struct super_block *sb, ext4_group_t block_group) { struct ext4_group_desc *desc; @@ -192,6 +192,7 @@ verify: set_buffer_verified(bh); return bh; } +EXPORT_SYMBOL(ext4_read_inode_bitmap); /* * NOTE! When we get the inode, we're the only people Index: linux-3.12.39-47.1/fs/ext4/inode.c =================================================================== --- linux-3.12.39-47.1.orig/fs/ext4/inode.c +++ linux-3.12.39-47.1/fs/ext4/inode.c @@ -5186,3 +5186,17 @@ out: sb_end_pagefault(inode->i_sb); return ret; } +EXPORT_SYMBOL(ext4_map_blocks); +EXPORT_SYMBOL(ext4_truncate); +EXPORT_SYMBOL(ext4_iget); +EXPORT_SYMBOL(ext4_bread); +EXPORT_SYMBOL(ext4_itable_unused_count); +EXPORT_SYMBOL(ext4_force_commit); +EXPORT_SYMBOL(ext4_mark_inode_dirty); +EXPORT_SYMBOL(ext4_get_group_desc); +EXPORT_SYMBOL(__ext4_journal_get_write_access); +EXPORT_SYMBOL(__ext4_journal_start_sb); +EXPORT_SYMBOL(__ext4_journal_stop); +EXPORT_SYMBOL(__ext4_handle_dirty_metadata); +EXPORT_SYMBOL(__ext4_std_error); +EXPORT_SYMBOL(ext4fs_dirhash); Index: linux-3.12.39-47.1/fs/ext4/mballoc.c =================================================================== --- linux-3.12.39-47.1.orig/fs/ext4/mballoc.c +++ linux-3.12.39-47.1/fs/ext4/mballoc.c @@ -759,6 +759,9 @@ void ext4_mb_generate_buddy(struct super * corrupt and update bb_free using bitmap value */ grp->bb_free = free; + if (!EXT4_MB_GRP_BBITMAP_CORRUPT(grp)) + percpu_counter_sub(&sbi->s_freeclusters_counter, + grp->bb_free); set_bit(EXT4_GROUP_INFO_BBITMAP_CORRUPT_BIT, &grp->bb_state); } mb_set_largest_free_order(sb, grp); Index: linux-3.12.39-47.1/fs/ext4/xattr.c =================================================================== --- linux-3.12.39-47.1.orig/fs/ext4/xattr.c +++ linux-3.12.39-47.1/fs/ext4/xattr.c @@ -541,6 +541,7 @@ ext4_xattr_release_block(handle_t *handl int error = 0; ce = mb_cache_entry_get(ext4_xattr_cache, bh->b_bdev, bh->b_blocknr); + BUFFER_TRACE(bh, "get_write_access"); error = ext4_journal_get_write_access(handle, bh); if (error) goto out; @@ -781,6 +782,7 @@ ext4_xattr_block_set(handle_t *handle, s if (s->base) { ce = mb_cache_entry_get(ext4_xattr_cache, bs->bh->b_bdev, bs->bh->b_blocknr); + BUFFER_TRACE(bs->bh, "get_write_access"); error = ext4_journal_get_write_access(handle, bs->bh); if (error) goto cleanup;