libvirt/tests/qemuxml2argvdata
Han Cheng 0d70656afd qemu: Build qemu command line for scsi host device
Except the scsi host device's controller is "lsilogic", mapping
between the libvirt attributes and scsi-generic properties is:

  libvirt     qemu
-----------------------------------------
  controller  bus ($libvirt_controller.0)
  bus         channel
  target      scsi-id
  unit        lun

For scsi host device with "lsilogic" controller, the mapping is:
('target (libvirt)' must be 0, as it's not used; 'unit (libvirt)
must <= 7).

  libvirt            qemu
----------------------------------------------------------
  controller && bus  bus ($libvirt_controller.$libvirt_bus)
  unit               scsi-id

It's not good to hardcode/hard-check limits of these attributes,
and even worse, these limits are not documented, one has to find
out by either testing or reading the qemu code, I'm looking forward
to qemu expose limits like these one day). For example, exposing
"max_target", "max_lun" for megasas:

static const struct SCSIBusInfo megasas_scsi_info = {
    .tcq = true,
    .max_target = MFI_MAX_LD,
    .max_lun = 255,

    .transfer_data = megasas_xfer_complete,
    .get_sg_list = megasas_get_sg_list,
    .complete = megasas_command_complete,
    .cancel = megasas_command_cancel,
};

Example of the qemu command line (lsilogic controller):

  -drive file=/dev/sg2,if=none,id=drive-hostdev-scsi_host7-0-0-0 \
  -device scsi-generic,bus=scsi0.0,scsi-id=8,\
  drive=drive-hostdev-scsi_host7-0-0-0,id=hostdev-scsi_host7-0-0-0

Example of the qemu command line (virtio-scsi controller):

  -drive file=/dev/sg2,if=none,id=drive-hostdev-scsi_host7-0-0-0 \
  -device scsi-generic,bus=scsi0.0,channel=0,scsi-id=128,lun=128,\
  drive=drive-hostdev-scsi_host7-0-0-0,id=hostdev-scsi_host7-0-0-0

Signed-off-by: Han Cheng <hanc.fnst@cn.fujitsu.com>
Signed-off-by: Osier Yang <jyang@redhat.com>
2013-05-13 18:50:16 +08:00
..
qemuxml2argv-balloon-device-auto.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-balloon-device-auto.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-balloon-device.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-balloon-device.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-bios.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-bios.xml test: Don't assume VNC is always available 2012-10-22 23:16:11 +08:00
qemuxml2argv-blkdeviotune.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-blkdeviotune.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-blkiotune-device.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-blkiotune-device.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-blkiotune.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-blkiotune.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-boot-cdrom.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-boot-cdrom.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-boot-complex-bootindex.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-boot-complex-bootindex.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-boot-complex.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-boot-complex.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-boot-dev+order.xml conf: add test for boot dev and order 2012-10-16 12:25:32 +02:00
qemuxml2argv-boot-floppy.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-boot-floppy.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-boot-menu-disable-drive-bootindex.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-boot-menu-disable-drive-bootindex.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-boot-menu-disable-drive.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-boot-menu-disable-drive.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-boot-menu-disable.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-boot-menu-disable.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-boot-menu-enable.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-boot-menu-enable.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-boot-multi.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-boot-multi.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-boot-network.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-boot-network.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-boot-order.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-boot-order.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-bootloader.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-bootloader.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-channel-guestfwd.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-channel-guestfwd.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-channel-spicevmc-old.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-channel-spicevmc-old.xml qemu: Support numad 2012-03-15 12:24:56 +08:00
qemuxml2argv-channel-spicevmc.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-channel-spicevmc.xml qemu: Support numad 2012-03-15 12:24:56 +08:00
qemuxml2argv-channel-virtio-auto.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-channel-virtio-auto.xml qemu: Support numad 2012-03-15 12:24:56 +08:00
qemuxml2argv-channel-virtio.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-channel-virtio.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-clock-france.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-clock-france.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-clock-localtime.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-clock-localtime.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-clock-utc.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-clock-utc.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-clock-variable.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-clock-variable.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-console-compat-auto.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-console-compat-auto.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-console-compat-chardev.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-console-compat-chardev.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-console-compat.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-console-compat.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-console-sclp.args S390: Do not generate a default USB controller 2013-04-30 19:18:43 -06:00
qemuxml2argv-console-sclp.xml S390: Enable SCLP Console in QEMU driver 2013-01-08 11:37:52 +01:00
qemuxml2argv-console-virtio-ccw.args S390: Do not generate a default USB controller 2013-04-30 19:18:43 -06:00
qemuxml2argv-console-virtio-ccw.xml S390: Testcases for virtio-ccw machines 2013-03-13 18:21:50 -06:00
qemuxml2argv-console-virtio-many.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-console-virtio-many.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-console-virtio-s390.args S390: Do not generate a default USB controller 2013-04-30 19:18:43 -06:00
qemuxml2argv-console-virtio-s390.xml S390: Testcases for virtio-ccw machines 2013-03-13 18:21:50 -06:00
qemuxml2argv-console-virtio.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-console-virtio.xml qemu: Support numad 2012-03-15 12:24:56 +08:00
qemuxml2argv-controller-order.args qemu: Improve handling of channels when generating SPICE command line 2013-04-24 14:37:57 +02:00
qemuxml2argv-controller-order.xml tests: Add test for controller order 2012-11-06 10:11:35 +01:00
qemuxml2argv-cpu-eoi-disabled.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-cpu-eoi-disabled.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-cpu-eoi-enabled.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-cpu-eoi-enabled.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-cpu-exact1.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-cpu-exact1.xml Remove probing of CPU models when launching QEMU guests 2012-09-27 10:24:52 +01:00
qemuxml2argv-cpu-exact2-nofallback.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-cpu-exact2-nofallback.xml Remove probing of CPU models when launching QEMU guests 2012-09-27 10:24:52 +01:00
qemuxml2argv-cpu-exact2.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-cpu-exact2.xml Remove probing of CPU models when launching QEMU guests 2012-09-27 10:24:52 +01:00
qemuxml2argv-cpu-fallback.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-cpu-fallback.xml Remove probing of CPU models when launching QEMU guests 2012-09-27 10:24:52 +01:00
qemuxml2argv-cpu-host-kvmclock.args qemu: Move -enable-kvm and friends earlier in the command line 2013-04-23 21:19:35 +02:00
qemuxml2argv-cpu-host-kvmclock.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-cpu-host-model-fallback.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-cpu-host-model-fallback.xml Remove probing of CPU models when launching QEMU guests 2012-09-27 10:24:52 +01:00
qemuxml2argv-cpu-host-model-nofallback.xml Remove probing of CPU models when launching QEMU guests 2012-09-27 10:24:52 +01:00
qemuxml2argv-cpu-host-model.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-cpu-host-model.xml Remove probing of CPU models when launching QEMU guests 2012-09-27 10:24:52 +01:00
qemuxml2argv-cpu-host-passthrough.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-cpu-host-passthrough.xml Remove probing of CPU models when launching QEMU guests 2012-09-27 10:24:52 +01:00
qemuxml2argv-cpu-kvmclock.args qemu: Move -enable-kvm and friends earlier in the command line 2013-04-23 21:19:35 +02:00
qemuxml2argv-cpu-kvmclock.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-cpu-minimum1.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-cpu-minimum1.xml Remove probing of CPU models when launching QEMU guests 2012-09-27 10:24:52 +01:00
qemuxml2argv-cpu-minimum2.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-cpu-minimum2.xml Remove probing of CPU models when launching QEMU guests 2012-09-27 10:24:52 +01:00
qemuxml2argv-cpu-nofallback.xml Remove probing of CPU models when launching QEMU guests 2012-09-27 10:24:52 +01:00
qemuxml2argv-cpu-numa1.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-cpu-numa1.xml Remove probing of CPU models when launching QEMU guests 2012-09-27 10:24:52 +01:00
qemuxml2argv-cpu-numa2.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-cpu-numa2.xml Remove probing of CPU models when launching QEMU guests 2012-09-27 10:24:52 +01:00
qemuxml2argv-cpu-qemu-host-passthrough.xml Remove probing of CPU models when launching QEMU guests 2012-09-27 10:24:52 +01:00
qemuxml2argv-cpu-strict1.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-cpu-strict1.xml Remove probing of CPU models when launching QEMU guests 2012-09-27 10:24:52 +01:00
qemuxml2argv-cpu-topology1.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-cpu-topology1.xml Remove probing of CPU models when launching QEMU guests 2012-09-27 10:24:52 +01:00
qemuxml2argv-cpu-topology2.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-cpu-topology2.xml Remove probing of CPU models when launching QEMU guests 2012-09-27 10:24:52 +01:00
qemuxml2argv-cpu-topology3.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-cpu-topology3.xml Remove probing of CPU models when launching QEMU guests 2012-09-27 10:24:52 +01:00
qemuxml2argv-cputune.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-cputune.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-aio.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-aio.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-blockio.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-blockio.xml Rename iolimit to blockio. 2012-09-04 09:14:36 -06:00
qemuxml2argv-disk-cdrom-empty.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-cdrom-empty.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-disk-cdrom-tray-no-device-cap.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-cdrom-tray-no-device-cap.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-disk-cdrom-tray.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-cdrom-tray.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-disk-cdrom.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-cdrom.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-disk-copy_on_read.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-copy_on_read.xml test: Don't assume VNC is always available 2012-10-22 23:16:11 +08:00
qemuxml2argv-disk-drive-boot-cdrom.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-drive-boot-cdrom.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-disk-drive-boot-disk.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-drive-boot-disk.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-disk-drive-cache-directsync.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-drive-cache-directsync.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-drive-cache-unsafe.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-drive-cache-unsafe.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-drive-cache-v1-none.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-drive-cache-v1-none.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-drive-cache-v1-wb.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-drive-cache-v1-wb.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-drive-cache-v1-wt.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-drive-cache-v1-wt.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-drive-cache-v2-none.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-drive-cache-v2-none.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-drive-cache-v2-wb.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-drive-cache-v2-wb.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-drive-cache-v2-wt.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-drive-cache-v2-wt.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-drive-error-policy-enospace.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-drive-error-policy-enospace.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-drive-error-policy-stop.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-drive-error-policy-stop.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-drive-error-policy-wreport-rignore.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-drive-error-policy-wreport-rignore.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-drive-fat.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-drive-fat.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-drive-fmt-qcow.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-drive-fmt-qcow.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-drive-network-gluster.args qemu: add support for libiscsi 2013-03-22 12:10:22 +08:00
qemuxml2argv-disk-drive-network-gluster.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-drive-network-iscsi-auth.args qemu: pass iscsi authorization credentials 2013-03-22 12:10:23 +08:00
qemuxml2argv-disk-drive-network-iscsi-auth.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-drive-network-iscsi-lun.args qemu: support passthrough for iscsi disks 2013-03-22 12:10:23 +08:00
qemuxml2argv-disk-drive-network-iscsi-lun.xml qemu: support passthrough for iscsi disks 2013-03-22 12:10:23 +08:00
qemuxml2argv-disk-drive-network-iscsi.args qemu: add support for libiscsi 2013-03-22 12:10:22 +08:00
qemuxml2argv-disk-drive-network-iscsi.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-drive-network-nbd-export.args virCaps: get rid of defaultDiskDriverType 2013-04-04 22:42:38 +02:00
qemuxml2argv-disk-drive-network-nbd-export.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-drive-network-nbd-ipv6-export.args virCaps: get rid of defaultDiskDriverType 2013-04-04 22:42:38 +02:00
qemuxml2argv-disk-drive-network-nbd-ipv6-export.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-drive-network-nbd-ipv6.args virCaps: get rid of defaultDiskDriverType 2013-04-04 22:42:38 +02:00
qemuxml2argv-disk-drive-network-nbd-ipv6.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-drive-network-nbd-unix.args virCaps: get rid of defaultDiskDriverType 2013-04-04 22:42:38 +02:00
qemuxml2argv-disk-drive-network-nbd-unix.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-drive-network-nbd.args virCaps: get rid of defaultDiskDriverType 2013-04-04 22:42:38 +02:00
qemuxml2argv-disk-drive-network-nbd.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-drive-network-rbd-auth.args virCaps: get rid of defaultDiskDriverType 2013-04-04 22:42:38 +02:00
qemuxml2argv-disk-drive-network-rbd-auth.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-disk-drive-network-rbd-ceph-env.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-drive-network-rbd-ceph-env.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-disk-drive-network-rbd-ipv6.args virCaps: get rid of defaultDiskDriverType 2013-04-04 22:42:38 +02:00
qemuxml2argv-disk-drive-network-rbd-ipv6.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-drive-network-rbd.args virCaps: get rid of defaultDiskDriverType 2013-04-04 22:42:38 +02:00
qemuxml2argv-disk-drive-network-rbd.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-drive-network-sheepdog.args virCaps: get rid of defaultDiskDriverType 2013-04-04 22:42:38 +02:00
qemuxml2argv-disk-drive-network-sheepdog.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-drive-no-boot.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-drive-no-boot.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-disk-drive-readonly-disk.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-drive-readonly-disk.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-disk-drive-readonly-no-device.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-drive-readonly-no-device.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-disk-drive-shared.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-drive-shared.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-disk-floppy-tray-no-device-cap.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-floppy-tray-no-device-cap.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-disk-floppy-tray.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-floppy-tray.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-disk-floppy.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-floppy.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-disk-geometry.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-geometry.xml qemu: Disk Geometry Override Support 2012-08-21 15:35:48 -06:00
qemuxml2argv-disk-ide-drive-split.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-ide-drive-split.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-disk-ide-wwn.args qemu: Allow the disk wwn to have "0x" prefix 2013-04-17 23:05:56 +08:00
qemuxml2argv-disk-ide-wwn.xml qemu: Use disk wwn in qemu command line 2012-09-18 15:00:01 +08:00
qemuxml2argv-disk-ioeventfd.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-ioeventfd.xml test: Don't assume VNC is always available 2012-10-22 23:16:11 +08:00
qemuxml2argv-disk-many.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-many.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-disk-mirror.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-order.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-order.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-disk-sata-device.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-sata-device.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-disk-scsi-device-auto.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-scsi-device-auto.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-disk-scsi-device.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-scsi-device.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-scsi-disk-split.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-scsi-disk-split.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-disk-scsi-disk-vpd-build-error.xml qemu: Allow the user to specify vendor and product for disk 2012-12-07 16:53:27 +08:00
qemuxml2argv-disk-scsi-disk-vpd.args qemu: Allow the user to specify vendor and product for disk 2012-12-07 16:53:27 +08:00
qemuxml2argv-disk-scsi-disk-vpd.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-scsi-disk-wwn.args qemu: Allow the disk wwn to have "0x" prefix 2013-04-17 23:05:56 +08:00
qemuxml2argv-disk-scsi-disk-wwn.xml qemu: Allow the disk wwn to have "0x" prefix 2013-04-17 23:05:56 +08:00
qemuxml2argv-disk-scsi-lun-passthrough-sgio.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-scsi-lun-passthrough.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-scsi-lun-passthrough.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-disk-scsi-megasas.args qemu: add support for LSI MegaRAID SAS1078 (aka megasas) SCSI controller 2013-03-22 12:11:14 +08:00
qemuxml2argv-disk-scsi-megasas.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-scsi-virtio-scsi.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-scsi-virtio-scsi.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-scsi-vscsi.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-scsi-vscsi.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-snapshot.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-snapshot.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-disk-source-pool.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-transient.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-disk-usb-device.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-usb-device.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-disk-usb.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-usb.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-disk-virtio-ccw-many.args S390: Do not generate a default USB controller 2013-04-30 19:18:43 -06:00
qemuxml2argv-disk-virtio-ccw-many.xml S390: Testcases for virtio-ccw machines 2013-03-13 18:21:50 -06:00
qemuxml2argv-disk-virtio-ccw.args S390: Do not generate a default USB controller 2013-04-30 19:18:43 -06:00
qemuxml2argv-disk-virtio-ccw.xml S390: Testcases for virtio-ccw machines 2013-03-13 18:21:50 -06:00
qemuxml2argv-disk-virtio-s390.args S390: Do not generate a default USB controller 2013-04-30 19:18:43 -06:00
qemuxml2argv-disk-virtio-s390.xml S390: Adding testcases for s390 2012-07-11 11:19:05 +02:00
qemuxml2argv-disk-virtio-scsi-ccw.args S390: Do not generate a default USB controller 2013-04-30 19:18:43 -06:00
qemuxml2argv-disk-virtio-scsi-ccw.xml S390: Testcases for virtio-scsi and virtio-rng 2013-03-14 15:53:20 -06:00
qemuxml2argv-disk-virtio-scsi-num_queues.args qemu: Support multiple queue virtio-scsi 2013-04-06 10:08:47 +08:00
qemuxml2argv-disk-virtio-scsi-num_queues.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-disk-virtio.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-virtio.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-disk-xenvbd.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-disk-xenvbd.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-encrypted-disk.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-encrypted-disk.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-eoi-disabled.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-eoi-disabled.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-eoi-enabled.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-eoi-enabled.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-event_idx.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-event_idx.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-floppy-drive-fat.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-floppy-drive-fat.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-fs9p.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-fs9p.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-graphics-listen-network2.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-graphics-listen-network.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-graphics-sdl-fullscreen.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-graphics-sdl-fullscreen.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-graphics-sdl.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-graphics-sdl.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-graphics-spice-agentmouse.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-graphics-spice-agentmouse.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-graphics-spice-compression.args qemu: Support ram bar size for qxl devices 2013-01-22 10:40:45 -07:00
qemuxml2argv-graphics-spice-compression.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-graphics-spice-qxl-vga.args qemu: Support ram bar size for qxl devices 2013-01-22 10:40:45 -07:00
qemuxml2argv-graphics-spice-qxl-vga.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-graphics-spice-timeout.args qemu: Improve handling of channels when generating SPICE command line 2013-04-24 14:37:57 +02:00
qemuxml2argv-graphics-spice-timeout.xml Remove probing of CPU models when launching QEMU guests 2012-09-27 10:24:52 +01:00
qemuxml2argv-graphics-spice-usb-redir.args domain_conf: add "usbredir" to list of valid spice channels 2012-05-08 09:22:45 -06:00
qemuxml2argv-graphics-spice-usb-redir.xml domain_conf: add "usbredir" to list of valid spice channels 2012-05-08 09:22:45 -06:00
qemuxml2argv-graphics-spice.args qemu: Support ram bar size for qxl devices 2013-01-22 10:40:45 -07:00
qemuxml2argv-graphics-spice.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-graphics-vnc-sasl.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-graphics-vnc-sasl.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-graphics-vnc-socket.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-graphics-vnc-socket.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-graphics-vnc-tls.args Introduce a virQEMUDriverConfigPtr object 2013-02-05 15:49:25 +00:00
qemuxml2argv-graphics-vnc-tls.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-graphics-vnc.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-graphics-vnc.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-hostdev-pci-address-device.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-hostdev-pci-address-device.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-hostdev-pci-address.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-hostdev-pci-address.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-hostdev-scsi-lsi.args qemu: Build qemu command line for scsi host device 2013-05-13 18:50:16 +08:00
qemuxml2argv-hostdev-scsi-lsi.xml qemu: Build qemu command line for scsi host device 2013-05-13 18:50:16 +08:00
qemuxml2argv-hostdev-scsi-virtio-scsi.args qemu: Build qemu command line for scsi host device 2013-05-13 18:50:16 +08:00
qemuxml2argv-hostdev-scsi-virtio-scsi.xml qemu: Build qemu command line for scsi host device 2013-05-13 18:50:16 +08:00
qemuxml2argv-hostdev-usb-address-device-boot.args tests: add boot order for host and redirected USB to qemu argv test 2012-11-21 18:43:15 +01:00
qemuxml2argv-hostdev-usb-address-device-boot.xml tests: add boot order for host and redirected USB to qemu argv test 2012-11-21 18:43:15 +01:00
qemuxml2argv-hostdev-usb-address-device.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-hostdev-usb-address-device.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-hostdev-usb-address.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-hostdev-usb-address.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-hostdev-vfio.args qemu: use vfio-pci on commandline when appropriate 2013-04-25 21:28:10 -04:00
qemuxml2argv-hostdev-vfio.xml qemu: use vfio-pci on commandline when appropriate 2013-04-25 21:28:10 -04:00
qemuxml2argv-hugepages.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-hugepages.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-hyperv.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-hyperv.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-input-usbmouse-addr.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-input-usbmouse-addr.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-input-usbmouse.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-input-usbmouse.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-input-usbtablet.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-input-usbtablet.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-input-xen.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-input-xen.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-kvm.args qemu: Use -machine accel=tcg|kvm when available 2013-04-23 21:19:35 +02:00
qemuxml2argv-kvm.xml qemu: Use -machine accel=tcg|kvm when available 2013-04-23 21:19:35 +02:00
qemuxml2argv-kvmclock.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-kvmclock.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-kvmclock+eoi-disabled.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-kvmclock+eoi-disabled.xml fix kvm_pv_eoi with kvmclock 2012-10-08 20:13:55 +02:00
qemuxml2argv-lease.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-lease.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-machine-aliases1.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-machine-aliases1.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-machine-aliases2.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-machine-aliases2.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-machine-core-off.args qemu: Use -machine accel=tcg|kvm when available 2013-04-23 21:19:35 +02:00
qemuxml2argv-machine-core-off.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-machine-core-on.args qemu: Use -machine accel=tcg|kvm when available 2013-04-23 21:19:35 +02:00
qemuxml2argv-machine-core-on.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-machine-usb-opt.args qemu: Use -machine accel=tcg|kvm when available 2013-04-23 21:19:35 +02:00
qemuxml2argv-machine-usb-opt.xml Add USB option capability 2013-04-12 10:56:03 +01:00
qemuxml2argv-memtune.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-memtune.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-metadata.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-metadata.xml qemu: Support numad 2012-03-15 12:24:56 +08:00
qemuxml2argv-migrate.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-migrate.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-minimal-s390.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-minimal-s390.xml S390: Adding testcases for s390 2012-07-11 11:19:05 +02:00
qemuxml2argv-minimal.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-minimal.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-misc-acpi.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-misc-acpi.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-misc-disable-s3.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-misc-disable-s3.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-misc-disable-suspends.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-misc-disable-suspends.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-misc-enable-s4.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-misc-enable-s4.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-misc-no-reboot.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-misc-no-reboot.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-misc-uuid.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-misc-uuid.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-monitor-json.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-monitor-json.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-multifunction-pci-device.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-multifunction-pci-device.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-net-bandwidth.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-net-client.args qemu: Record the default NIC model in the domain XML 2013-04-04 22:41:20 +02:00
qemuxml2argv-net-client.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-net-eth-ifname.args qemu: Record the default NIC model in the domain XML 2013-04-04 22:41:20 +02:00
qemuxml2argv-net-eth-ifname.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-net-eth-names.args qemu: Record the default NIC model in the domain XML 2013-04-04 22:41:20 +02:00
qemuxml2argv-net-eth-names.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-net-eth.args qemu: Record the default NIC model in the domain XML 2013-04-04 22:41:20 +02:00
qemuxml2argv-net-eth.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-net-hostdev-vfio.args qemu: use vfio-pci on commandline when appropriate 2013-04-25 21:28:10 -04:00
qemuxml2argv-net-hostdev-vfio.xml qemu: use vfio-pci on commandline when appropriate 2013-04-25 21:28:10 -04:00
qemuxml2argv-net-hostdev.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-net-hostdev.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-net-mcast.args qemu: Record the default NIC model in the domain XML 2013-04-04 22:41:20 +02:00
qemuxml2argv-net-mcast.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-net-openvswitch.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-net-server.args qemu: Record the default NIC model in the domain XML 2013-04-04 22:41:20 +02:00
qemuxml2argv-net-server.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-net-user.args qemu: Record the default NIC model in the domain XML 2013-04-04 22:41:20 +02:00
qemuxml2argv-net-user.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-net-virtio-ccw.args S390: Do not generate a default USB controller 2013-04-30 19:18:43 -06:00
qemuxml2argv-net-virtio-ccw.xml S390: Testcases for virtio-ccw machines 2013-03-13 18:21:50 -06:00
qemuxml2argv-net-virtio-device.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-net-virtio-device.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-net-virtio-netdev.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-net-virtio-netdev.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-net-virtio-network-portgroup.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-net-virtio-s390.args S390: Do not generate a default USB controller 2013-04-30 19:18:43 -06:00
qemuxml2argv-net-virtio-s390.xml S390: Adding testcases for s390 2012-07-11 11:19:05 +02:00
qemuxml2argv-net-virtio.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-net-virtio.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-no-shutdown.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-no-shutdown.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-nographics-vga.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-nographics-vga.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-nographics.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-nographics.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-numad-auto-memory-vcpu-cpuset.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-numad-auto-memory-vcpu-cpuset.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-numad-auto-memory-vcpu-no-cpuset-and-placement.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-numad-auto-memory-vcpu-no-cpuset-and-placement.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-numad-auto-vcpu-no-numatune.xml numad: Set memory policy from numad advisory nodeset 2012-05-08 16:57:32 -06:00
qemuxml2argv-numad-auto-vcpu-static-numatune.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-numad-auto-vcpu-static-numatune.xml numad: Set memory policy from numad advisory nodeset 2012-05-08 16:57:32 -06:00
qemuxml2argv-numad-static-memory-auto-vcpu.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-numad-static-memory-auto-vcpu.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-numad-static-vcpu-no-numatune.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-numad.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-numad.xml numad: Set memory policy from numad advisory nodeset 2012-05-08 16:57:32 -06:00
qemuxml2argv-numatune-memory.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-numatune-memory.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-parallel-parport-chardev.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-parallel-parport-chardev.xml Fix for parallel port passthrough for QEMU 2012-06-04 16:46:23 -06:00
qemuxml2argv-parallel-tcp-chardev.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-parallel-tcp-chardev.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-parallel-tcp.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-parallel-tcp.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-pci-autoadd-addr.args qemu: auto-add bridges and allow using them 2013-04-25 13:19:40 +02:00
qemuxml2argv-pci-autoadd-addr.xml qemu: auto-add bridges and allow using them 2013-04-25 13:19:40 +02:00
qemuxml2argv-pci-autoadd-idx.args qemu: auto-add bridges and allow using them 2013-04-25 13:19:40 +02:00
qemuxml2argv-pci-autoadd-idx.xml qemu: auto-add bridges and allow using them 2013-04-25 13:19:40 +02:00
qemuxml2argv-pci-bridge.xml qemu: auto-add bridges and allow using them 2013-04-25 13:19:40 +02:00
qemuxml2argv-pci-rom.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-pci-rom.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-ppc-dtb.args qemu: add dtb option support 2013-03-19 15:48:58 -06:00
qemuxml2argv-ppc-dtb.xml qemu: add dtb option support 2013-03-19 15:48:58 -06:00
qemuxml2argv-pseries-basic.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-pseries-basic.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-pseries-nvram.args qemu: Add command line builder and parser for NVRAM. 2013-04-25 16:50:45 +08:00
qemuxml2argv-pseries-nvram.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-pseries-usb-default.args Set legacy USB option with default for ppc64. 2013-04-19 11:30:49 +01:00
qemuxml2argv-pseries-usb-default.xml Set legacy USB option with default for ppc64. 2013-04-19 11:30:49 +01:00
qemuxml2argv-pseries-usb-multi.args Set legacy USB option with default for ppc64. 2013-04-19 11:30:49 +01:00
qemuxml2argv-pseries-usb-multi.xml Set legacy USB option with default for ppc64. 2013-04-19 11:30:49 +01:00
qemuxml2argv-pseries-vio-address-clash.args tests: Add qemuxml2argv tests for PPC64 pseries machine 2012-01-13 16:10:43 -07:00
qemuxml2argv-pseries-vio-address-clash.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-pseries-vio-user-assigned.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-pseries-vio-user-assigned.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-pseries-vio.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-pseries-vio.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-qemu-ns-no-env.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-qemu-ns-no-env.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-qemu-ns.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-qemu-ns.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-reboot-timeout-disabled.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-reboot-timeout-disabled.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-reboot-timeout-enabled.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-reboot-timeout-enabled.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-restore-v1.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-restore-v1.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-restore-v2-fd.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-restore-v2-fd.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-restore-v2.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-restore-v2.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-s390-piix-controllers.args qemu: don't always reserve PCI addresses for implicit controllers 2013-04-27 12:55:46 +02:00
qemuxml2argv-s390-piix-controllers.xml qemu: don't always reserve PCI addresses for implicit controllers 2013-04-27 12:55:46 +02:00
qemuxml2argv-s390-usb-none.args qemu: don't assign a PCI address to 'none' USB controller 2013-04-26 20:06:01 +02:00
qemuxml2argv-s390-usb-none.xml qemu: don't assign a PCI address to 'none' USB controller 2013-04-26 20:06:01 +02:00
qemuxml2argv-seclabel-dynamic-baselabel.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-seclabel-dynamic-baselabel.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-seclabel-dynamic-override.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-seclabel-dynamic-override.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-seclabel-dynamic.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-seclabel-dynamic.xml Multiple security drivers in XML data 2012-08-20 19:13:33 +02:00
qemuxml2argv-seclabel-none.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-seclabel-none.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-seclabel-static-relabel.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-seclabel-static-relabel.xml qemu: Support numad 2012-03-15 12:24:56 +08:00
qemuxml2argv-seclabel-static.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-seclabel-static.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-serial-dev-chardev.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-serial-dev-chardev.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-serial-dev.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-serial-dev.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-serial-file-chardev.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-serial-file-chardev.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-serial-file.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-serial-file.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-serial-many-chardev.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-serial-many-chardev.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-serial-many.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-serial-many.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-serial-pty-chardev.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-serial-pty-chardev.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-serial-pty.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-serial-pty.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-serial-target-port-auto.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-serial-tcp-chardev.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-serial-tcp-chardev.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-serial-tcp-telnet-chardev.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-serial-tcp-telnet-chardev.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-serial-tcp-telnet.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-serial-tcp-telnet.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-serial-tcp.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-serial-tcp.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-serial-udp-chardev.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-serial-udp-chardev.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-serial-udp.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-serial-udp.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-serial-unix-chardev.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-serial-unix-chardev.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-serial-unix.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-serial-unix.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-serial-vc-chardev.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-serial-vc-chardev.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-serial-vc.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-serial-vc.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-smartcard-controller.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-smartcard-controller.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-smartcard-host-certificates.args smartcard: spell ccid-card-emulated qemu property correctly 2013-04-02 06:23:33 -06:00
qemuxml2argv-smartcard-host-certificates.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-smartcard-host.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-smartcard-host.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-smartcard-passthrough-spicevmc.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-smartcard-passthrough-spicevmc.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-smartcard-passthrough-tcp.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-smartcard-passthrough-tcp.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-smbios.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-smbios.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-smp.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-smp.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-sound-device.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-sound-device.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-sound.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-sound.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00
qemuxml2argv-tpm-no-backend-invalid.xml conf: don't crash on a tpm device with no backends 2013-05-09 14:25:11 +02:00
qemuxml2argv-tpm-passthrough.args Add test case for TPM passthrough 2013-04-12 16:55:46 -04:00
qemuxml2argv-tpm-passthrough.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-usb1-usb2.args qemu: make PCI multifunction support more manual 2011-10-01 11:48:28 -04:00
qemuxml2argv-usb1-usb2.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-usb-controller.args Default USB device is on slot 1 function 2 2011-09-05 15:03:27 +08:00
qemuxml2argv-usb-controller.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-usb-hub.args Default USB device is on slot 1 function 2 2011-09-05 15:03:27 +08:00
qemuxml2argv-usb-hub.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-usb-ich9-companion.args qemu: make PCI multifunction support more manual 2011-10-01 11:48:28 -04:00
qemuxml2argv-usb-ich9-companion.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-usb-ich9-ehci-addr.args Fix logic for assigning PCI addresses to USB2 companion controllers 2012-05-15 17:07:34 +01:00
qemuxml2argv-usb-ich9-ehci-addr.xml Set a sensible default master start port for ehci companion controllers 2012-05-15 17:07:34 +01:00
qemuxml2argv-usb-ich9-no-companion.xml Fix usb master startport parsing 2013-04-25 14:54:46 +02:00
qemuxml2argv-usb-none-hub.xml qemu: Add support for "none" USB controller 2012-08-02 12:13:48 +02:00
qemuxml2argv-usb-none-other.xml qemu: Add support for "none" USB controller 2012-08-02 12:13:48 +02:00
qemuxml2argv-usb-none-usbtablet.xml qemu: Add support for "none" USB controller 2012-08-02 12:13:48 +02:00
qemuxml2argv-usb-none.args qemu: don't assign a PCI address to 'none' USB controller 2013-04-26 20:06:01 +02:00
qemuxml2argv-usb-none.xml qemu: Add support for "none" USB controller 2012-08-02 12:13:48 +02:00
qemuxml2argv-usb-piix3-controller.args qemu: make PCI multifunction support more manual 2011-10-01 11:48:28 -04:00
qemuxml2argv-usb-piix3-controller.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-usb-ports.args Default USB device is on slot 1 function 2 2011-09-05 15:03:27 +08:00
qemuxml2argv-usb-ports.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-usb-redir-boot.args tests: add boot order for host and redirected USB to qemu argv test 2012-11-21 18:43:15 +01:00
qemuxml2argv-usb-redir-boot.xml tests: add boot order for host and redirected USB to qemu argv test 2012-11-21 18:43:15 +01:00
qemuxml2argv-usb-redir-filter.args test: add xml2argvtest for usb-redir filter and update xml schema 2012-09-13 17:22:37 +08:00
qemuxml2argv-usb-redir-filter.xml test: add xml2argvtest for usb-redir filter and update xml schema 2012-09-13 17:22:37 +08:00
qemuxml2argv-usb-redir.args qemu: make PCI multifunction support more manual 2011-10-01 11:48:28 -04:00
qemuxml2argv-usb-redir.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-video-device-pciaddr-default.args qemu: Support ram bar size for qxl devices 2013-01-22 10:40:45 -07:00
qemuxml2argv-video-device-pciaddr-default.xml tests: add one -device video device testcase 2012-12-17 14:02:58 +08:00
qemuxml2argv-virtio-lun.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-virtio-lun.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-virtio-rng-ccw.args S390: Do not generate a default USB controller 2013-04-30 19:18:43 -06:00
qemuxml2argv-virtio-rng-ccw.xml S390: Testcases for virtio-scsi and virtio-rng 2013-03-14 15:53:20 -06:00
qemuxml2argv-virtio-rng-default.args Fix crash parsing RNG device specification 2013-03-07 12:57:10 +00:00
qemuxml2argv-virtio-rng-default.xml Fix crash parsing RNG device specification 2013-03-07 12:57:10 +00:00
qemuxml2argv-virtio-rng-egd.args tests: Add tests for virtio-rng device handling 2013-02-25 10:58:04 +01:00
qemuxml2argv-virtio-rng-egd.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-virtio-rng-random.args virtio-rng: Add rate limiting options for virtio-RNG 2013-03-14 13:28:10 +01:00
qemuxml2argv-virtio-rng-random.xml qemu: auto-add pci-root controller for pc machine types 2013-04-25 13:05:10 +02:00
qemuxml2argv-watchdog-device.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-watchdog-device.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-watchdog-dump.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-watchdog-dump.xml numad: Always output 'placement' of <vcpu> 2012-05-08 16:57:37 -06:00
qemuxml2argv-watchdog.args qemu: pass -usb and usb hubs earlier, so USB disks with static address are handled properly 2012-10-30 08:54:32 +01:00
qemuxml2argv-watchdog.xml qemu: honor allowDiskFormatProbing when parsing command line 2013-04-29 15:52:02 +02:00