mirror of
https://github.com/kdave/btrfs-progs
synced 2025-04-01 22:48:06 +00:00
btrfs-progs: kernel-shared: track missing devices number
Maintain the btrfs_fs_devices::missing counter to track the number of missing devices, similar to what kernel does. Signed-off-by: Anand Jain <anand.jain@oracle.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
b8b0f1ec41
commit
4673ec037e
@ -2156,6 +2156,7 @@ static int read_one_chunk(struct btrfs_fs_info *fs_info, struct btrfs_key *key,
|
||||
(unsigned long long)devid);
|
||||
list_add(&map->stripes[i].dev->dev_list,
|
||||
&fs_info->fs_devices->devices);
|
||||
fs_info->fs_devices->missing_devices++;
|
||||
}
|
||||
|
||||
}
|
||||
@ -2258,6 +2259,7 @@ static int read_one_dev(struct btrfs_fs_info *fs_info,
|
||||
device->fd = -1;
|
||||
list_add(&device->dev_list,
|
||||
&fs_info->fs_devices->devices);
|
||||
fs_info->fs_devices->missing_devices++;
|
||||
}
|
||||
|
||||
fill_device_from_item(leaf, dev_item, device);
|
||||
|
@ -88,6 +88,7 @@ struct btrfs_fs_devices {
|
||||
u64 latest_trans;
|
||||
u64 lowest_devid;
|
||||
|
||||
u64 missing_devices;
|
||||
u64 total_rw_bytes;
|
||||
|
||||
int latest_bdev;
|
||||
|
Loading…
Reference in New Issue
Block a user