]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
Btrfs: check error before reporting missing device and add uuid
authorAnand Jain <Anand.Jain@oracle.com>
Thu, 7 May 2015 20:34:35 +0000 (04:34 +0800)
committerChris Mason <clm@fb.com>
Wed, 3 Jun 2015 02:34:35 +0000 (19:34 -0700)
Report missing device when add is successful,
otherwise it would exit as ENOMEM. And add uuid
to the report.

Signed-off-by: Anand Jain <anand.jain@oracle.com>
Reviewed-by: David Sterba <dsterba@suse.cz>
Signed-off-by: Chris Mason <clm@fb.com>
fs/btrfs/volumes.c

index 38d3a0f3bcdde3435f731da83b673610ba4694c3..403ed1fdd901ae38a991f4711b5108bb49775903 100644 (file)
@@ -6230,10 +6230,11 @@ static int read_one_dev(struct btrfs_root *root,
                if (!btrfs_test_opt(root, DEGRADED))
                        return -EIO;
 
-               btrfs_warn(root->fs_info, "devid %llu missing", devid);
                device = add_missing_dev(root, fs_devices, devid, dev_uuid);
                if (!device)
                        return -ENOMEM;
+               btrfs_warn(root->fs_info, "devid %llu uuid %pU missing",
+                               devid, dev_uuid);
        } else {
                if (!device->bdev && !btrfs_test_opt(root, DEGRADED))
                        return -EIO;