diff options
author | Stefan Brüns <stefan.bruens@rwth-aachen.de> | 2016-09-17 02:10:10 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-09-23 09:20:15 -0400 |
commit | 688d0e79f657ed0b60e5b721bd00540021e1e518 (patch) | |
tree | a4e14ccf4c7c89cc2641b079fa98af6119f2cd16 /include/ext4fs.h | |
parent | f798b1dda1c5de818b806189e523d1b75db7e72d (diff) | |
download | u-boot-688d0e79f657ed0b60e5b721bd00540021e1e518.tar.gz |
ext4: Use helper function to access group descriptor and its fields
The descriptor size is variable, thus array indices are not generically
applicable. The larger group descriptors also contain e.g. high parts
of block numbers, which have to be read and written.
Signed-off-by: Stefan Brüns <stefan.bruens@rwth-aachen.de>
Diffstat (limited to 'include/ext4fs.h')
-rw-r--r-- | include/ext4fs.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/ext4fs.h b/include/ext4fs.h index 7e1ee6c175..965cd9e9c5 100644 --- a/include/ext4fs.h +++ b/include/ext4fs.h @@ -98,7 +98,6 @@ struct ext_filesystem { /* Superblock */ struct ext2_sblock *sb; /* Block group descritpor table */ - struct ext2_block_group *bgd; char *gdtable; /* Block Bitmap Related */ |