mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-13 12:53:27 +00:00
btrfs: use smaller type for btrfs_path reada
The possible values for reada are all positive and bounded, we can later save some bytes by storing it in u8. Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
e4058b54d1
commit
dccabfad20
@ -596,7 +596,7 @@ struct btrfs_path {
|
||||
int slots[BTRFS_MAX_LEVEL];
|
||||
/* if there is real range locking, this locks field will change */
|
||||
int locks[BTRFS_MAX_LEVEL];
|
||||
int reada;
|
||||
u8 reada;
|
||||
/* keep some upper locks as we walk down */
|
||||
int lowest_level;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user