btrfs-progs: convert bitfield to separate variables in btrfs_path

We don't have that many bitfields that would save space.

Signed-off-by: David Sterba <dsterba@suse.com>
master
David Sterba 2016-11-03 17:09:16 +01:00
parent 64e9dbf550
commit 5b3c976bc2
1 changed files with 2 additions and 2 deletions

View File

@ -567,8 +567,8 @@ struct btrfs_path {
* set by btrfs_split_item, tells search_slot to keep all locks
* and to force calls to keep space in the nodes
*/
unsigned int search_for_split:1;
unsigned int skip_check_block:1;
u8 search_for_split;
u8 skip_check_block;
};
/*