[libvirt] [PATCH] libxl: default to qemu driver for network disks

Joao Martins joao.m.martins at oracle.com
Wed May 25 08:41:23 UTC 2016


On 05/25/2016 04:23 AM, Jim Fehlig wrote:
> On 05/23/2016 04:01 PM, Jim Fehlig wrote:
>> Xen only supports network-based disks with the qemu (aka qdisk) driver.
>> Set the driverName to 'qemu' in libxlDomainDeviceDefPostParse() if
>> not already set. When starting a domain with network-based disks,
>> ensure the driverName is 'qemu'.
> 
> FYI, I've added
> 
> Resolves: https://bugzilla.opensuse.org/show_bug.cgi?id=981094
> to the commit message. Any other comments on this small fix?

Just a minor one (see below) but other than that, Looks good to me:

Reviewed-by: Joao Martins <joao.m.martins at oracle.com>

Joao

>>
>> Signed-off-by: Jim Fehlig <jfehlig at suse.com>
>> ---
>>  src/libxl/libxl_conf.c   | 11 +++++++----
>>  src/libxl/libxl_domain.c | 12 ++++++++++++
>>  2 files changed, 19 insertions(+), 4 deletions(-)
>>
>> diff --git a/src/libxl/libxl_conf.c b/src/libxl/libxl_conf.c
>> index 13e56ac..78e9ee9 100644
>> --- a/src/libxl/libxl_conf.c
>> +++ b/src/libxl/libxl_conf.c
>> @@ -1058,13 +1058,18 @@ libxlMakeNetworkDiskSrc(virStorageSourcePtr src, char **srcstr)
>>  int
>>  libxlMakeDisk(virDomainDiskDefPtr l_disk, libxl_device_disk *x_disk)
>>  {
>> -    const char *driver;
>> -    int format;
>> +    const char *driver = virDomainDiskGetDriver(l_disk);
>> +    int format = virDomainDiskGetFormat(l_disk);
>>      int actual_type = virStorageSourceGetActualType(l_disk->src);
>>  
>>      libxl_device_disk_init(x_disk);
>>  
>>      if (actual_type == VIR_STORAGE_TYPE_NETWORK) {
>> +        if (driver && STRNEQ(driver, "qemu")) {
This could probably be changed to STRNEQ_NULLABLE ?

>> +            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
>> +                           _("only the 'qemu' driver can be used with network disks"));
>> +            return -1;
>> +        }
>>          if (libxlMakeNetworkDiskSrc(l_disk->src, &x_disk->pdev_path) < 0)
>>              return -1;
>>      } else {
>> @@ -1075,8 +1080,6 @@ libxlMakeDisk(virDomainDiskDefPtr l_disk, libxl_device_disk *x_disk)
>>      if (VIR_STRDUP(x_disk->vdev, l_disk->dst) < 0)
>>          return -1;
>>  
>> -    driver = virDomainDiskGetDriver(l_disk);
>> -    format = virDomainDiskGetFormat(l_disk);
>>      if (driver) {
>>          if (STREQ(driver, "tap") || STREQ(driver, "tap2")) {
>>              switch (format) {
>> diff --git a/src/libxl/libxl_domain.c b/src/libxl/libxl_domain.c
>> index 113942b..8a3866f 100644
>> --- a/src/libxl/libxl_domain.c
>> +++ b/src/libxl/libxl_domain.c
>> @@ -364,6 +364,18 @@ libxlDomainDeviceDefPostParse(virDomainDeviceDefPtr dev,
>>          }
>>      }
>>  
>> +    /* for network-based disks, set 'qemu' as the default driver */
>> +    if (dev->type == VIR_DOMAIN_DEVICE_DISK) {
>> +        virDomainDiskDefPtr disk = dev->data.disk;
>> +        int actual_type = virStorageSourceGetActualType(disk->src);
>> +
>> +        if (actual_type == VIR_STORAGE_TYPE_NETWORK) {
>> +            if (!virDomainDiskGetDriver(disk) &&
>> +                virDomainDiskSetDriver(disk, "qemu") < 0)
>> +                return -1;
>> +        }
>> +    }
>> +
>>      return 0;
>>  }
>>  




More information about the libvir-list mailing list