@@ -1010,26 +1010,9 @@ static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
device->generation =
btrfs_stack_device_generation(&disk_super->dev_item);
- /* no lock is required during the initial stage. */
- if (!latest_dev) {
- set_bit(In_sync, &device->flags);
- latest_dev = device;
- } else {
- if (device->generation > latest_dev->generation) {
- set_bit(In_sync, &device->flags);
- clear_bit(In_sync, &latest_dev->flags);
- latest_dev = device;
- } else if (device->generation == latest_dev->generation) {
- set_bit(In_sync, &device->flags);
- }
- /*
- * if (device->generation < latest_dev->generation)
- * # don't set In_sync
- */
- }
-
- if (!test_bit(In_sync, &device->flags))
- pr_info("dev %s gen %llu is not In_sync\n", device->name->str, device->generation);
+ if (!latest_dev ||
+ device->generation > latest_dev->generation)
+ latest_dev = device;
if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) {
device->writeable = 0;
@@ -1063,6 +1046,21 @@ static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
blkdev_put(bdev, flags);
continue;
}
+
+ /* set In_sync flag */
+ list_for_each_entry(device, head, dev_list) {
+ ASSERT(device->generation <= latest_dev->generation);
+ if (device->generation == latest_dev->generation) {
+ set_bit(In_sync, &device->flags);
+ pr_debug("btrfs: dev %s gen %llu is In_sync\n",
+ device->name->str, device->generation);
+ } else {
+ clear_bit(In_sync, &device->flags);
+ pr_info("btrfs: dev %s gen %llu is not In_sync\n",
+ device->name->str, device->generation);
+ }
+ }
+
if (fs_devices->open_devices == 0) {
ret = -EINVAL;
goto out;
The current method sometimes can report In_sync status wrongly if the out-of-sync device happens to be the first one we check, and since it will be the only one, it'll be set In_sync, but later if a newer device is found, we then change it to !In_sync, but it's not reported in kernel log. This changes it to set In_sync flag after iterating all devices, at this point we have the latest device so we can report out-of-sync device precisely. Signed-off-by: Liu Bo <bo.li.liu@oracle.com> --- fs/btrfs/volumes.c | 38 ++++++++++++++++++-------------------- 1 file changed, 18 insertions(+), 20 deletions(-)