diff options
Diffstat (limited to 'fs/ext2/ialloc.c')
| -rw-r--r-- | fs/ext2/ialloc.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/fs/ext2/ialloc.c b/fs/ext2/ialloc.c index a1fc3dabca41..6484199b35d1 100644 --- a/fs/ext2/ialloc.c +++ b/fs/ext2/ialloc.c @@ -145,7 +145,7 @@ void ext2_free_inode (struct inode * inode)  	else  		ext2_release_inode(sb, block_group, is_directory);  	mark_buffer_dirty(bitmap_bh); -	if (sb->s_flags & MS_SYNCHRONOUS) +	if (sb->s_flags & SB_SYNCHRONOUS)  		sync_dirty_buffer(bitmap_bh);  	brelse(bitmap_bh); @@ -517,7 +517,7 @@ repeat_in_this_group:  	goto fail;  got:  	mark_buffer_dirty(bitmap_bh); -	if (sb->s_flags & MS_SYNCHRONOUS) +	if (sb->s_flags & SB_SYNCHRONOUS)  		sync_dirty_buffer(bitmap_bh);  	brelse(bitmap_bh); |