::

@@ -1561,12 +1564,15 @@ static struct dentry *btrfs_mount_root(struct 
file_system_type *fs_type,
                goto error_fs_info;
        }

-       error = btrfs_scan_one_device(device_name, mode, fs_type, &fs_devices);
-       if (error) {
+       device = btrfs_scan_one_device(device_name, mode, fs_type);
+       if (IS_ERR(device)) {
+               error = PTR_ERR(device);
                mutex_unlock(&uuid_mutex);
                goto error_fs_info;
        }

+       fs_devices = device->fs_devices;
+

 The version at misc-next is missing this assignment and it panics.

::

Thanks, Anand
--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to