commit | 54c65371464e6e676494473dd258d7c337146a35 | [log] [tgz] |
---|---|---|
author | David Sterba <dsterba@suse.com> | Wed Sep 27 14:22:39 2023 +0200 |
committer | David Sterba <dsterba@suse.com> | Thu Oct 12 16:44:16 2023 +0200 |
tree | 34734407610577f943041172cdfc66b85f4829ae | |
parent | cb6cbab79055ca207ad88bc54226b48ececdcef0 [diff] |
btrfs: open code btrfs_ordered_inode_tree in btrfs_inode The structure btrfs_ordered_inode_tree is used only in one place, in btrfs_inode. The structure itself has a 4 byte hole which is wasted space. Move the btrfs_ordered_inode_tree members to btrfs_inode with a common prefix 'ordered_tree_' where the hole can be utilized and shrink inode size. Signed-off-by: David Sterba <dsterba@suse.com>