diff options
| -rw-r--r-- | fs/ext3/resize.c | 21 | ||||
| -rw-r--r-- | fs/ext3/super.c | 4 | ||||
| -rw-r--r-- | fs/jbd/journal.c | 2 | ||||
| -rw-r--r-- | include/linux/ext3_fs.h | 2 |
4 files changed, 14 insertions, 15 deletions
diff --git a/fs/ext3/resize.c b/fs/ext3/resize.c index 5e1337fd87..e186f7fb69 100644 --- a/fs/ext3/resize.c +++ b/fs/ext3/resize.c | |||
| @@ -336,7 +336,7 @@ static int verify_reserved_gdb(struct super_block *sb, | |||
| 336 | unsigned five = 5; | 336 | unsigned five = 5; |
| 337 | unsigned seven = 7; | 337 | unsigned seven = 7; |
| 338 | unsigned grp; | 338 | unsigned grp; |
| 339 | __u32 *p = (__u32 *)primary->b_data; | 339 | __le32 *p = (__le32 *)primary->b_data; |
| 340 | int gdbackups = 0; | 340 | int gdbackups = 0; |
| 341 | 341 | ||
| 342 | while ((grp = ext3_list_backups(sb, &three, &five, &seven)) < end) { | 342 | while ((grp = ext3_list_backups(sb, &three, &five, &seven)) < end) { |
| @@ -380,7 +380,7 @@ static int add_new_gdb(handle_t *handle, struct inode *inode, | |||
| 380 | struct buffer_head *dind; | 380 | struct buffer_head *dind; |
| 381 | int gdbackups; | 381 | int gdbackups; |
| 382 | struct ext3_iloc iloc; | 382 | struct ext3_iloc iloc; |
| 383 | __u32 *data; | 383 | __le32 *data; |
| 384 | int err; | 384 | int err; |
| 385 | 385 | ||
| 386 | if (test_opt(sb, DEBUG)) | 386 | if (test_opt(sb, DEBUG)) |
| @@ -417,7 +417,7 @@ static int add_new_gdb(handle_t *handle, struct inode *inode, | |||
| 417 | goto exit_bh; | 417 | goto exit_bh; |
| 418 | } | 418 | } |
| 419 | 419 | ||
| 420 | data = (__u32 *)dind->b_data; | 420 | data = (__le32 *)dind->b_data; |
| 421 | if (le32_to_cpu(data[gdb_num % EXT3_ADDR_PER_BLOCK(sb)]) != gdblock) { | 421 | if (le32_to_cpu(data[gdb_num % EXT3_ADDR_PER_BLOCK(sb)]) != gdblock) { |
| 422 | ext3_warning(sb, __FUNCTION__, | 422 | ext3_warning(sb, __FUNCTION__, |
| 423 | "new group %u GDT block "E3FSBLK" not reserved", | 423 | "new group %u GDT block "E3FSBLK" not reserved", |
| @@ -519,7 +519,7 @@ static int reserve_backup_gdb(handle_t *handle, struct inode *inode, | |||
| 519 | struct buffer_head *dind; | 519 | struct buffer_head *dind; |
| 520 | struct ext3_iloc iloc; | 520 | struct ext3_iloc iloc; |
| 521 | ext3_fsblk_t blk; | 521 | ext3_fsblk_t blk; |
| 522 | __u32 *data, *end; | 522 | __le32 *data, *end; |
| 523 | int gdbackups = 0; | 523 | int gdbackups = 0; |
| 524 | int res, i; | 524 | int res, i; |
| 525 | int err; | 525 | int err; |
| @@ -536,8 +536,8 @@ static int reserve_backup_gdb(handle_t *handle, struct inode *inode, | |||
| 536 | } | 536 | } |
| 537 | 537 | ||
| 538 | blk = EXT3_SB(sb)->s_sbh->b_blocknr + 1 + EXT3_SB(sb)->s_gdb_count; | 538 | blk = EXT3_SB(sb)->s_sbh->b_blocknr + 1 + EXT3_SB(sb)->s_gdb_count; |
| 539 | data = (__u32 *)dind->b_data + EXT3_SB(sb)->s_gdb_count; | 539 | data = (__le32 *)dind->b_data + EXT3_SB(sb)->s_gdb_count; |
| 540 | end = (__u32 *)dind->b_data + EXT3_ADDR_PER_BLOCK(sb); | 540 | end = (__le32 *)dind->b_data + EXT3_ADDR_PER_BLOCK(sb); |
| 541 | 541 | ||
| 542 | /* Get each reserved primary GDT block and verify it holds backups */ | 542 | /* Get each reserved primary GDT block and verify it holds backups */ |
| 543 | for (res = 0; res < reserved_gdb; res++, blk++) { | 543 | for (res = 0; res < reserved_gdb; res++, blk++) { |
| @@ -545,7 +545,8 @@ static int reserve_backup_gdb(handle_t *handle, struct inode *inode, | |||
| 545 | ext3_warning(sb, __FUNCTION__, | 545 | ext3_warning(sb, __FUNCTION__, |
| 546 | "reserved block "E3FSBLK | 546 | "reserved block "E3FSBLK |
| 547 | " not at offset %ld", | 547 | " not at offset %ld", |
| 548 | blk, (long)(data - (__u32 *)dind->b_data)); | 548 | blk, |
| 549 | (long)(data - (__le32 *)dind->b_data)); | ||
| 549 | err = -EINVAL; | 550 | err = -EINVAL; |
| 550 | goto exit_bh; | 551 | goto exit_bh; |
| 551 | } | 552 | } |
| @@ -560,7 +561,7 @@ static int reserve_backup_gdb(handle_t *handle, struct inode *inode, | |||
| 560 | goto exit_bh; | 561 | goto exit_bh; |
| 561 | } | 562 | } |
| 562 | if (++data >= end) | 563 | if (++data >= end) |
| 563 | data = (__u32 *)dind->b_data; | 564 | data = (__le32 *)dind->b_data; |
| 564 | } | 565 | } |
| 565 | 566 | ||
| 566 | for (i = 0; i < reserved_gdb; i++) { | 567 | for (i = 0; i < reserved_gdb; i++) { |
| @@ -584,7 +585,7 @@ static int reserve_backup_gdb(handle_t *handle, struct inode *inode, | |||
| 584 | blk = input->group * EXT3_BLOCKS_PER_GROUP(sb); | 585 | blk = input->group * EXT3_BLOCKS_PER_GROUP(sb); |
| 585 | for (i = 0; i < reserved_gdb; i++) { | 586 | for (i = 0; i < reserved_gdb; i++) { |
| 586 | int err2; | 587 | int err2; |
| 587 | data = (__u32 *)primary[i]->b_data; | 588 | data = (__le32 *)primary[i]->b_data; |
| 588 | /* printk("reserving backup %lu[%u] = %lu\n", | 589 | /* printk("reserving backup %lu[%u] = %lu\n", |
| 589 | primary[i]->b_blocknr, gdbackups, | 590 | primary[i]->b_blocknr, gdbackups, |
| 590 | blk + primary[i]->b_blocknr); */ | 591 | blk + primary[i]->b_blocknr); */ |
| @@ -689,7 +690,7 @@ exit_err: | |||
| 689 | "can't update backup for group %d (err %d), " | 690 | "can't update backup for group %d (err %d), " |
| 690 | "forcing fsck on next reboot", group, err); | 691 | "forcing fsck on next reboot", group, err); |
| 691 | sbi->s_mount_state &= ~EXT3_VALID_FS; | 692 | sbi->s_mount_state &= ~EXT3_VALID_FS; |
| 692 | sbi->s_es->s_state &= ~cpu_to_le16(EXT3_VALID_FS); | 693 | sbi->s_es->s_state &= cpu_to_le16(~EXT3_VALID_FS); |
| 693 | mark_buffer_dirty(sbi->s_sbh); | 694 | mark_buffer_dirty(sbi->s_sbh); |
| 694 | } | 695 | } |
| 695 | } | 696 | } |
diff --git a/fs/ext3/super.c b/fs/ext3/super.c index 0544325d9d..1098501776 100644 --- a/fs/ext3/super.c +++ b/fs/ext3/super.c | |||
| @@ -2348,10 +2348,8 @@ static int ext3_remount (struct super_block * sb, int * flags, char * data) | |||
| 2348 | */ | 2348 | */ |
| 2349 | ext3_clear_journal_err(sb, es); | 2349 | ext3_clear_journal_err(sb, es); |
| 2350 | sbi->s_mount_state = le16_to_cpu(es->s_state); | 2350 | sbi->s_mount_state = le16_to_cpu(es->s_state); |
| 2351 | if ((ret = ext3_group_extend(sb, es, n_blocks_count))) { | 2351 | if ((err = ext3_group_extend(sb, es, n_blocks_count))) |
| 2352 | err = ret; | ||
| 2353 | goto restore_opts; | 2352 | goto restore_opts; |
| 2354 | } | ||
| 2355 | if (!ext3_setup_super (sb, es, 0)) | 2353 | if (!ext3_setup_super (sb, es, 0)) |
| 2356 | sb->s_flags &= ~MS_RDONLY; | 2354 | sb->s_flags &= ~MS_RDONLY; |
| 2357 | } | 2355 | } |
diff --git a/fs/jbd/journal.c b/fs/jbd/journal.c index b571209d6a..2fc66c3e66 100644 --- a/fs/jbd/journal.c +++ b/fs/jbd/journal.c | |||
| @@ -1094,7 +1094,7 @@ int journal_load(journal_t *journal) | |||
| 1094 | /* | 1094 | /* |
| 1095 | * Create a slab for this blocksize | 1095 | * Create a slab for this blocksize |
| 1096 | */ | 1096 | */ |
| 1097 | err = journal_create_jbd_slab(cpu_to_be32(sb->s_blocksize)); | 1097 | err = journal_create_jbd_slab(be32_to_cpu(sb->s_blocksize)); |
| 1098 | if (err) | 1098 | if (err) |
| 1099 | return err; | 1099 | return err; |
| 1100 | 1100 | ||
diff --git a/include/linux/ext3_fs.h b/include/linux/ext3_fs.h index 369c675023..cc08f56750 100644 --- a/include/linux/ext3_fs.h +++ b/include/linux/ext3_fs.h | |||
| @@ -460,7 +460,7 @@ struct ext3_super_block { | |||
| 460 | */ | 460 | */ |
| 461 | __u8 s_prealloc_blocks; /* Nr of blocks to try to preallocate*/ | 461 | __u8 s_prealloc_blocks; /* Nr of blocks to try to preallocate*/ |
| 462 | __u8 s_prealloc_dir_blocks; /* Nr to preallocate for dirs */ | 462 | __u8 s_prealloc_dir_blocks; /* Nr to preallocate for dirs */ |
| 463 | __u16 s_reserved_gdt_blocks; /* Per group desc for online growth */ | 463 | __le16 s_reserved_gdt_blocks; /* Per group desc for online growth */ |
| 464 | /* | 464 | /* |
| 465 | * Journaling support valid if EXT3_FEATURE_COMPAT_HAS_JOURNAL set. | 465 | * Journaling support valid if EXT3_FEATURE_COMPAT_HAS_JOURNAL set. |
| 466 | */ | 466 | */ |
