[libvirt] [PATCH v5 00/16] Move qemu command line controller checks to qemuDomainDeviceDefValidateController* checks

John Ferlan posted 16 patches 6 years, 2 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/libvirt tags/patchew/20180105234739.508-1-jferlan@redhat.com
There is a newer version of this series
src/qemu/qemu_alias.c          |   4 +-
src/qemu/qemu_command.c        | 452 +++++----------------------------------
src/qemu/qemu_domain.c         | 474 ++++++++++++++++++++++++++++++++++++++++-
src/qemu/qemu_domain_address.c |  74 ++-----
src/qemu/qemu_domain_address.h |   6 +-
tests/qemumemlocktest.c        |  14 ++
tests/qemuxml2xmltest.c        |   5 +-
7 files changed, 568 insertions(+), 461 deletions(-)
[libvirt] [PATCH v5 00/16] Move qemu command line controller checks to qemuDomainDeviceDefValidateController* checks
Posted by John Ferlan 6 years, 2 months ago
v4: https://www.redhat.com/archives/libvir-list/2017-December/msg00401.html

Changes since v4:

Insert patch 1 to split the qemuDomainSetSCSIControllerModel as has been
discussed during review.

Adjustments to the SCSI patches as a result.

Added patch 16 from Mark Hartmayer

Andrea Bolognani (1):
  qemu: Add missing checks for pcie-root-port options

John Ferlan (14):
  qemu: Split qemuDomainSetSCSIControllerModel
  qemu: Introduce qemuDomainDeviceDefValidateControllerAttributes
  qemu: Move and rename qemuBuildCheckSCSIControllerModel
  qemu: Move model set for qemuBuildControllerDevStr
  qemu: Adjust SCSI controller switch in qemuBuildControllerDevStr
  qemu: Add check for iothread attribute in validate controller
  qemu: Introduce qemuDomainDeviceDefValidateControllerSCSI
  qemu: Introduce qemuDomainDeviceDefValidateControllerPCI
  qemu: Use virDomainPCIControllerOpts in qemuBuildControllerDevStr
  qemu: Move PCI command modelName check to controller def validate
  qemu: Move PCI command modelName TypeToString to controller def
    validate
  qemu: Move PCI more command checks to controller def validate
  qemu: Complete PCI command checks to controller def validate
  qemu: Introduce qemuDomainDeviceDefValidateControllerSATA

Marc Hartmayer (1):
  qemu: Use switch statement for address types in
    qemuBuildControllerDevStr

 src/qemu/qemu_alias.c          |   4 +-
 src/qemu/qemu_command.c        | 452 +++++----------------------------------
 src/qemu/qemu_domain.c         | 474 ++++++++++++++++++++++++++++++++++++++++-
 src/qemu/qemu_domain_address.c |  74 ++-----
 src/qemu/qemu_domain_address.h |   6 +-
 tests/qemumemlocktest.c        |  14 ++
 tests/qemuxml2xmltest.c        |   5 +-
 7 files changed, 568 insertions(+), 461 deletions(-)

-- 
2.13.6

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list
Re: [libvirt] [PATCH v5 00/16] Move qemu command line controller checks to qemuDomainDeviceDefValidateController* checks
Posted by John Ferlan 6 years, 2 months ago
ping?

Should still apply with current top. I can resend if requested.

Tks,

John

On 01/05/2018 06:47 PM, John Ferlan wrote:
> v4: https://www.redhat.com/archives/libvir-list/2017-December/msg00401.html
> 
> Changes since v4:
> 
> Insert patch 1 to split the qemuDomainSetSCSIControllerModel as has been
> discussed during review.
> 
> Adjustments to the SCSI patches as a result.
> 
> Added patch 16 from Mark Hartmayer
> 
> Andrea Bolognani (1):
>   qemu: Add missing checks for pcie-root-port options
> 
> John Ferlan (14):
>   qemu: Split qemuDomainSetSCSIControllerModel
>   qemu: Introduce qemuDomainDeviceDefValidateControllerAttributes
>   qemu: Move and rename qemuBuildCheckSCSIControllerModel
>   qemu: Move model set for qemuBuildControllerDevStr
>   qemu: Adjust SCSI controller switch in qemuBuildControllerDevStr
>   qemu: Add check for iothread attribute in validate controller
>   qemu: Introduce qemuDomainDeviceDefValidateControllerSCSI
>   qemu: Introduce qemuDomainDeviceDefValidateControllerPCI
>   qemu: Use virDomainPCIControllerOpts in qemuBuildControllerDevStr
>   qemu: Move PCI command modelName check to controller def validate
>   qemu: Move PCI command modelName TypeToString to controller def
>     validate
>   qemu: Move PCI more command checks to controller def validate
>   qemu: Complete PCI command checks to controller def validate
>   qemu: Introduce qemuDomainDeviceDefValidateControllerSATA
> 
> Marc Hartmayer (1):
>   qemu: Use switch statement for address types in
>     qemuBuildControllerDevStr
> 
>  src/qemu/qemu_alias.c          |   4 +-
>  src/qemu/qemu_command.c        | 452 +++++----------------------------------
>  src/qemu/qemu_domain.c         | 474 ++++++++++++++++++++++++++++++++++++++++-
>  src/qemu/qemu_domain_address.c |  74 ++-----
>  src/qemu/qemu_domain_address.h |   6 +-
>  tests/qemumemlocktest.c        |  14 ++
>  tests/qemuxml2xmltest.c        |   5 +-
>  7 files changed, 568 insertions(+), 461 deletions(-)
> 

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list
Re: [libvirt] [PATCH v5 00/16] Move qemu command line controller checks to qemuDomainDeviceDefValidateController* checks
Posted by John Ferlan 6 years, 2 months ago
ping^2

Tks -

John

On 01/19/2018 01:27 PM, John Ferlan wrote:
> 
> ping?
> 
> Should still apply with current top. I can resend if requested.
> 
> Tks,
> 
> John
> 
> On 01/05/2018 06:47 PM, John Ferlan wrote:
>> v4: https://www.redhat.com/archives/libvir-list/2017-December/msg00401.html
>>
>> Changes since v4:
>>
>> Insert patch 1 to split the qemuDomainSetSCSIControllerModel as has been
>> discussed during review.
>>
>> Adjustments to the SCSI patches as a result.
>>
>> Added patch 16 from Mark Hartmayer
>>
>> Andrea Bolognani (1):
>>   qemu: Add missing checks for pcie-root-port options
>>
>> John Ferlan (14):
>>   qemu: Split qemuDomainSetSCSIControllerModel
>>   qemu: Introduce qemuDomainDeviceDefValidateControllerAttributes
>>   qemu: Move and rename qemuBuildCheckSCSIControllerModel
>>   qemu: Move model set for qemuBuildControllerDevStr
>>   qemu: Adjust SCSI controller switch in qemuBuildControllerDevStr
>>   qemu: Add check for iothread attribute in validate controller
>>   qemu: Introduce qemuDomainDeviceDefValidateControllerSCSI
>>   qemu: Introduce qemuDomainDeviceDefValidateControllerPCI
>>   qemu: Use virDomainPCIControllerOpts in qemuBuildControllerDevStr
>>   qemu: Move PCI command modelName check to controller def validate
>>   qemu: Move PCI command modelName TypeToString to controller def
>>     validate
>>   qemu: Move PCI more command checks to controller def validate
>>   qemu: Complete PCI command checks to controller def validate
>>   qemu: Introduce qemuDomainDeviceDefValidateControllerSATA
>>
>> Marc Hartmayer (1):
>>   qemu: Use switch statement for address types in
>>     qemuBuildControllerDevStr
>>
>>  src/qemu/qemu_alias.c          |   4 +-
>>  src/qemu/qemu_command.c        | 452 +++++----------------------------------
>>  src/qemu/qemu_domain.c         | 474 ++++++++++++++++++++++++++++++++++++++++-
>>  src/qemu/qemu_domain_address.c |  74 ++-----
>>  src/qemu/qemu_domain_address.h |   6 +-
>>  tests/qemumemlocktest.c        |  14 ++
>>  tests/qemuxml2xmltest.c        |   5 +-
>>  7 files changed, 568 insertions(+), 461 deletions(-)
>>
> 
> --
> libvir-list mailing list
> libvir-list@redhat.com
> https://www.redhat.com/mailman/listinfo/libvir-list
> 

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list