diff options
author | Stefan Brüns <stefan.bruens@rwth-aachen.de> | 2016-09-06 02:36:52 (GMT) |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-09-23 13:02:42 (GMT) |
commit | 290ce2f95a7bd3c8a963084b6abab6881197e1df (patch) | |
tree | 10c8df3bfbb2914af3d72ea37786329fa3d5e77d /fs | |
parent | 87a40b6e037ce73cb7c3ac93b2a049d5299b92c8 (diff) | |
download | u-boot-fsl-qoriq-290ce2f95a7bd3c8a963084b6abab6881197e1df.tar.xz |
ext4: Use correct value for inode size even on revision 0 filesystems
fs->inodesz is already correctly (i.e. dependent on fs revision)
initialized in ext4fs_mount.
Signed-off-by: Stefan Brüns <stefan.bruens@rwth-aachen.de>
Reviewed-by: Lukasz Majewski <l.majewski@samsung.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ext4/ext4_write.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/ext4/ext4_write.c b/fs/ext4/ext4_write.c index c55e252..a438be0 100644 --- a/fs/ext4/ext4_write.c +++ b/fs/ext4/ext4_write.c @@ -609,7 +609,6 @@ int ext4fs_init(void) /* populate fs */ fs->blksz = EXT2_BLOCK_SIZE(ext4fs_root); - fs->inodesz = INODE_SIZE_FILESYSTEM(ext4fs_root); fs->sect_perblk = fs->blksz >> fs->dev_desc->log2blksz; /* get the superblock */ |