mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-08-03 03:46:11 -04:00
ext4: assign get_fs()->dev_desc before using it
Commit 50ce4c0 "fs/ext4: Support device block sizes != 512 bytes" modified ext4fs_set_blk_dev() to calculate total_sect based on get_fs()->dev_desc->log2blksz rather than SECTOR_SIZE. However, this value wasn't yet assigned. Move the assignment earlier so the code doesn't crash or hang. Cc: Egbert Eich <eich@suse.com> Tested-by: Tom Rini <trini@ti.com> Signed-off-by: Stephen Warren <swarren@nvidia.com>
This commit is contained in:
parent
24c185cf58
commit
c28cbfa1a8
@ -51,11 +51,11 @@ void ext4fs_set_blk_dev(block_dev_desc_t *rbdd, disk_partition_t *info)
|
||||
{
|
||||
assert(rbdd->blksz == (1 << rbdd->log2blksz));
|
||||
ext4fs_block_dev_desc = rbdd;
|
||||
get_fs()->dev_desc = rbdd;
|
||||
part_info = info;
|
||||
part_offset = info->start;
|
||||
get_fs()->total_sect = (info->size * info->blksz) >>
|
||||
get_fs()->dev_desc->log2blksz;
|
||||
get_fs()->dev_desc = rbdd;
|
||||
}
|
||||
|
||||
int ext4fs_devread(int sector, int byte_offset, int byte_len, char *buf)
|
||||
|
Loading…
x
Reference in New Issue
Block a user