Skip to content

Commit

Permalink
btrfs: reduce size and reorder compression members in struct btrfs_inode
Browse files Browse the repository at this point in the history
Currently the compression type values are bounded and fit to an u8, we
can pack the btrfs_inode a bit by reordering them to the space created
by the location key. This reduces size from 1112 to 1104.

Reviewed-by: Qu Wenruo <wqu@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
  • Loading branch information
David Sterba committed Oct 12, 2023
1 parent 105c8c4 commit e41570d
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions fs/btrfs/btrfs_inode.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,15 @@ struct btrfs_inode {
*/
struct btrfs_key location;

/* Cached value of inode property 'compression'. */
u8 prop_compress;

/*
* Force compression on the file using the defrag ioctl, could be
* different from prop_compress and takes precedence if set.
*/
u8 defrag_compress;

/*
* Lock for counters and all fields used to determine if the inode is in
* the log or not (last_trans, last_sub_trans, last_log_commit,
Expand Down Expand Up @@ -235,16 +244,6 @@ struct btrfs_inode {

struct btrfs_block_rsv block_rsv;

/*
* Cached values of inode properties
*/
unsigned prop_compress; /* per-file compression algorithm */
/*
* Force compression on the file using the defrag ioctl, could be
* different from prop_compress and takes precedence if set
*/
unsigned defrag_compress;

struct btrfs_delayed_node *delayed_node;

/* File creation time. */
Expand Down

0 comments on commit e41570d

Please sign in to comment.