mirror of
https://github.com/torvalds/linux.git
synced 2026-06-02 11:33:28 +02:00
As each stripe extent is tied to an extent item, delete the stripe extent once the corresponding extent item is deleted. Signed-off-by: Johannes Thumshirn <johannes.thumshirn@wdc.com> Reviewed-by: David Sterba <dsterba@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
37 lines
917 B
C
37 lines
917 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) 2023 Western Digital Corporation or its affiliates.
|
|
*/
|
|
|
|
#ifndef BTRFS_RAID_STRIPE_TREE_H
|
|
#define BTRFS_RAID_STRIPE_TREE_H
|
|
|
|
struct btrfs_io_context;
|
|
struct btrfs_io_stripe;
|
|
struct btrfs_ordered_extent;
|
|
struct btrfs_trans_handle;
|
|
|
|
int btrfs_delete_raid_extent(struct btrfs_trans_handle *trans, u64 start, u64 length);
|
|
int btrfs_insert_raid_extent(struct btrfs_trans_handle *trans,
|
|
struct btrfs_ordered_extent *ordered_extent);
|
|
|
|
static inline bool btrfs_need_stripe_tree_update(struct btrfs_fs_info *fs_info,
|
|
u64 map_type)
|
|
{
|
|
u64 type = map_type & BTRFS_BLOCK_GROUP_TYPE_MASK;
|
|
u64 profile = map_type & BTRFS_BLOCK_GROUP_PROFILE_MASK;
|
|
|
|
if (!btrfs_fs_incompat(fs_info, RAID_STRIPE_TREE))
|
|
return false;
|
|
|
|
if (type != BTRFS_BLOCK_GROUP_DATA)
|
|
return false;
|
|
|
|
if (profile & BTRFS_BLOCK_GROUP_RAID1_MASK)
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
#endif
|