diff options
| author | David S. Miller <davem@davemloft.net> | 2012-11-10 18:32:51 -0500 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2012-11-10 18:32:51 -0500 | 
| commit | d4185bbf62a5d8d777ee445db1581beb17882a07 (patch) | |
| tree | 024b0badbd7c970b1983be6d8c345cc4a290cb31 /fs/ext4/balloc.c | |
| parent | c075b13098b399dc565b4d53f42047a8d40ed3ba (diff) | |
| parent | a375413311b39005ef281bfd71ae8f4e3df22e97 (diff) | |
| download | olio-linux-3.10-d4185bbf62a5d8d777ee445db1581beb17882a07.tar.xz olio-linux-3.10-d4185bbf62a5d8d777ee445db1581beb17882a07.zip  | |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Conflicts:
	drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c
Minor conflict between the BCM_CNIC define removal in net-next
and a bug fix added to net.  Based upon a conflict resolution
patch posted by Stephen Rothwell.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'fs/ext4/balloc.c')
| -rw-r--r-- | fs/ext4/balloc.c | 8 | 
1 files changed, 3 insertions, 5 deletions
diff --git a/fs/ext4/balloc.c b/fs/ext4/balloc.c index 1b5089067d0..cf1821784a1 100644 --- a/fs/ext4/balloc.c +++ b/fs/ext4/balloc.c @@ -174,8 +174,7 @@ void ext4_init_block_bitmap(struct super_block *sb, struct buffer_head *bh,  		ext4_free_inodes_set(sb, gdp, 0);  		ext4_itable_unused_set(sb, gdp, 0);  		memset(bh->b_data, 0xff, sb->s_blocksize); -		ext4_block_bitmap_csum_set(sb, block_group, gdp, bh, -					   EXT4_BLOCKS_PER_GROUP(sb) / 8); +		ext4_block_bitmap_csum_set(sb, block_group, gdp, bh);  		return;  	}  	memset(bh->b_data, 0, sb->s_blocksize); @@ -212,8 +211,7 @@ void ext4_init_block_bitmap(struct super_block *sb, struct buffer_head *bh,  	 */  	ext4_mark_bitmap_end(num_clusters_in_group(sb, block_group),  			     sb->s_blocksize * 8, bh->b_data); -	ext4_block_bitmap_csum_set(sb, block_group, gdp, bh, -				   EXT4_BLOCKS_PER_GROUP(sb) / 8); +	ext4_block_bitmap_csum_set(sb, block_group, gdp, bh);  	ext4_group_desc_csum_set(sb, block_group, gdp);  } @@ -350,7 +348,7 @@ void ext4_validate_block_bitmap(struct super_block *sb,  		return;  	}  	if (unlikely(!ext4_block_bitmap_csum_verify(sb, block_group, -			desc, bh, EXT4_BLOCKS_PER_GROUP(sb) / 8))) { +			desc, bh))) {  		ext4_unlock_group(sb, block_group);  		ext4_error(sb, "bg %u: bad block bitmap checksum", block_group);  		return;  |