Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 16974
b: refs/heads/master
c: 29ba172
h: refs/heads/master
v: v3
  • Loading branch information
Glauber de Oliveira Costa authored and Linus Torvalds committed Jan 9, 2006
1 parent cebd701 commit 1ad45d2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9f40668d7d14d4d16cedc2104bfb63a43584dacf
refs/heads/master: 29ba17231222c42ca3df5424f43949e2a6fddec2
10 changes: 5 additions & 5 deletions trunk/fs/ext3/resize.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ static int verify_group_input(struct super_block *sb,
unsigned start = le32_to_cpu(es->s_blocks_count);
unsigned end = start + input->blocks_count;
unsigned group = input->group;
unsigned itend = input->inode_table + EXT3_SB(sb)->s_itb_per_group;
unsigned itend = input->inode_table + sbi->s_itb_per_group;
unsigned overhead = ext3_bg_has_super(sb, group) ?
(1 + ext3_bg_num_gdb(sb, group) +
le16_to_cpu(es->s_reserved_gdt_blocks)) : 0;
Expand Down Expand Up @@ -764,7 +764,7 @@ int ext3_group_add(struct super_block *sb, struct ext3_new_group_data *input)
}

lock_super(sb);
if (input->group != EXT3_SB(sb)->s_groups_count) {
if (input->group != sbi->s_groups_count) {
ext3_warning(sb, __FUNCTION__,
"multiple resizers run on filesystem!");
err = -EBUSY;
Expand Down Expand Up @@ -799,7 +799,7 @@ int ext3_group_add(struct super_block *sb, struct ext3_new_group_data *input)
* data. So we need to be careful to set all of the relevant
* group descriptor data etc. *before* we enable the group.
*
* The key field here is EXT3_SB(sb)->s_groups_count: as long as
* The key field here is sbi->s_groups_count: as long as
* that retains its old value, nobody is going to access the new
* group.
*
Expand Down Expand Up @@ -859,7 +859,7 @@ int ext3_group_add(struct super_block *sb, struct ext3_new_group_data *input)
smp_wmb();

/* Update the global fs size fields */
EXT3_SB(sb)->s_groups_count++;
sbi->s_groups_count++;

ext3_journal_dirty_metadata(handle, primary);

Expand All @@ -874,7 +874,7 @@ int ext3_group_add(struct super_block *sb, struct ext3_new_group_data *input)
percpu_counter_mod(&sbi->s_freeinodes_counter,
EXT3_INODES_PER_GROUP(sb));

ext3_journal_dirty_metadata(handle, EXT3_SB(sb)->s_sbh);
ext3_journal_dirty_metadata(handle, sbi->s_sbh);
sb->s_dirt = 1;

exit_journal:
Expand Down

0 comments on commit 1ad45d2

Please sign in to comment.