Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c479cb4f authored by David Sterba's avatar David Sterba
Browse files

btrfs: switch balance item to the temporary item key



No visible change.

Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent 0bbbccb1
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -2966,7 +2966,7 @@ static int insert_balance_item(struct btrfs_root *root,
	}

	key.objectid = BTRFS_BALANCE_OBJECTID;
	key.type = BTRFS_BALANCE_ITEM_KEY;
	key.type = BTRFS_TEMPORARY_ITEM_KEY;
	key.offset = 0;

	ret = btrfs_insert_empty_item(trans, root, path, &key,
@@ -3015,7 +3015,7 @@ static int del_balance_item(struct btrfs_root *root)
	}

	key.objectid = BTRFS_BALANCE_OBJECTID;
	key.type = BTRFS_BALANCE_ITEM_KEY;
	key.type = BTRFS_TEMPORARY_ITEM_KEY;
	key.offset = 0;

	ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
@@ -3867,7 +3867,7 @@ int btrfs_recover_balance(struct btrfs_fs_info *fs_info)
		return -ENOMEM;

	key.objectid = BTRFS_BALANCE_OBJECTID;
	key.type = BTRFS_BALANCE_ITEM_KEY;
	key.type = BTRFS_TEMPORARY_ITEM_KEY;
	key.offset = 0;

	ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);