libvirt/tests/qemuxml2argvdata
Laine Stump 3b1c191fe7 conf: parse/format type='hostdev' network interfaces
This is the new interface type that sets up an SR-IOV PCI network
device to be assigned to the guest with PCI passthrough after
initializing some network device-specific things from the config
(e.g. MAC address, virtualport profile parameters). Here is an example
of the syntax:

  <interface type='hostdev' managed='yes'>
    <source>
      <address type='pci' domain='0' bus='0' slot='4' function='3'/>
    </source>
    <mac address='00:11:22:33:44:55'/>
    <address type='pci' domain='0' bus='0' slot='7' function='0'/>
  </interface>

This would assign the PCI card from bus 0 slot 4 function 3 on the
host, to bus 0 slot 7 function 0 on the guest, but would first set the
MAC address of the card to 00:11:22:33:44:55.

NB: The parser and formatter don't care if the PCI card being
specified is a standard single function network adapter, or a virtual
function (VF) of an SR-IOV capable network adapter, but the upcoming
code that implements the back end of this config will work *only* with
SR-IOV VFs. This is because modifying the mac address of a standard
network adapter prior to assigning it to a guest is pointless - part
of the device reset that occurs during that process will reset the MAC
address to the value programmed into the card's firmware.

Although it's not supported by any of libvirt's hypervisor drivers,
usb network hostdevs are also supported in the parser and formatter
for completeness and consistency. <source> syntax is identical to that
for plain <hostdev> devices, except that the <address> element should
have "type='usb'" added if bus/device are specified:

  <interface type='hostdev'>
    <source>
      <address type='usb' bus='0' device='4'/>
    </source>
    <mac address='00:11:22:33:44:55'/>
  </interface>

If the vendor/product form of usb specification is used, type='usb'
is implied:

  <interface type='hostdev'>
    <source>
      <vendor id='0x0012'/>
      <product id='0x24dd'/>
    </source>
    <mac address='00:11:22:33:44:55'/>
  </interface>

Again, the upcoming patch to fill in the backend of this functionality
will log an error and fail with "Unsupported Config" if you actually
try to assign a USB network adapter to a guest using <interface
type='hostdev'> - just use a standard <hostdev> entry in that case
(and also for single-port PCI adapters).
2012-03-05 23:24:28 -05:00
..
qemu-lib.sh qemu: Add support for host CPU modes 2012-01-17 12:22:19 +01:00
qemu-supported-cpus.sh tests: avoid dirname in tests 2012-01-17 12:09:51 -07:00
qemu.sh tests: avoid dirname in tests 2012-01-17 12:09:51 -07:00
qemuxml2argv-balloon-device-auto.args tests: fix recent test failures 2011-04-06 10:05:14 -06:00
qemuxml2argv-balloon-device-auto.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-balloon-device.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-balloon-device.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-bios.args bios: Add support for SGA 2011-07-11 11:47:14 +02:00
qemuxml2argv-bios.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-blkdeviotune.args Add tests for blkdeviotune 2011-11-30 11:36:11 -07:00
qemuxml2argv-blkdeviotune.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-blkiotune-device.args blkiotune: add qemu support for blkiotune.device_weight 2011-11-29 12:26:21 -07:00
qemuxml2argv-blkiotune-device.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-blkiotune.args qemu: Implement blkio tunable XML configuration and parsing. 2011-02-08 11:43:45 -07:00
qemuxml2argv-blkiotune.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-boot-cdrom.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-boot-cdrom.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-boot-complex-bootindex.args qemu: add new disk device='lun' for bus='virtio' & type='block' 2012-01-09 10:55:53 -05:00
qemuxml2argv-boot-complex-bootindex.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-boot-complex.args qemu: add new disk device='lun' for bus='virtio' & type='block' 2012-01-09 10:55:53 -05:00
qemuxml2argv-boot-complex.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-boot-floppy.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-boot-floppy.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-boot-menu-disable-drive-bootindex.args qemu: Translate boot config into bootindex if possible 2011-06-15 11:29:09 +02:00
qemuxml2argv-boot-menu-disable-drive-bootindex.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-boot-menu-disable-drive.args qemu: Translate boot config into bootindex if possible 2011-06-15 11:29:09 +02:00
qemuxml2argv-boot-menu-disable-drive.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-boot-menu-disable.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-boot-menu-disable.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-boot-menu-enable.args qemu: Translate boot config into bootindex if possible 2011-06-15 11:29:09 +02:00
qemuxml2argv-boot-menu-enable.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-boot-multi.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-boot-multi.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-boot-network.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-boot-network.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-boot-order.args qemu: add new disk device='lun' for bus='virtio' & type='block' 2012-01-09 10:55:53 -05:00
qemuxml2argv-boot-order.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-bootloader.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-bootloader.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-channel-guestfwd.args tests: fix recent test failures 2011-04-06 10:05:14 -06:00
qemuxml2argv-channel-guestfwd.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-channel-spicevmc-old.args spicevmc: support older -device spicevmc of qemu 0.13.0 2011-02-04 09:17:01 -07:00
qemuxml2argv-channel-spicevmc-old.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-channel-spicevmc.args spicevmc: support new qemu chardev 2011-02-03 21:14:50 -07:00
qemuxml2argv-channel-spicevmc.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-channel-virtio-auto.args Allow multiple consoles per virtual guest 2011-11-03 12:01:05 +00:00
qemuxml2argv-channel-virtio-auto.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-channel-virtio.args Allow multiple consoles per virtual guest 2011-11-03 12:01:05 +00:00
qemuxml2argv-channel-virtio.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-clock-france.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-clock-france.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-clock-localtime.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-clock-localtime.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-clock-utc.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-clock-utc.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-clock-variable.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-clock-variable.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-console-compat-auto.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-console-compat-auto.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-console-compat-chardev.args tests: fix recent test failures 2011-04-06 10:05:14 -06:00
qemuxml2argv-console-compat-chardev.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-console-compat.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-console-compat.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-console-virtio-many.args Allow multiple consoles per virtual guest 2011-11-03 12:01:05 +00:00
qemuxml2argv-console-virtio-many.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-console-virtio.args Allow multiple consoles per virtual guest 2011-11-03 12:01:05 +00:00
qemuxml2argv-console-virtio.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-cpu-exact1.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-cpu-exact1.xml cpu: Optionally forbid fallback CPU models 2012-01-17 11:39:19 +01:00
qemuxml2argv-cpu-exact2-nofallback.args cpu: Optionally forbid fallback CPU models 2012-01-17 11:39:19 +01:00
qemuxml2argv-cpu-exact2-nofallback.xml cpu: Optionally forbid fallback CPU models 2012-01-17 11:39:19 +01:00
qemuxml2argv-cpu-exact2.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-cpu-exact2.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-cpu-fallback.args cpu: Optionally forbid fallback CPU models 2012-01-17 11:39:19 +01:00
qemuxml2argv-cpu-fallback.xml cpu: Optionally forbid fallback CPU models 2012-01-17 11:39:19 +01:00
qemuxml2argv-cpu-host-kvmclock.args qemu: parse and create -cpu ...,-kvmclock 2012-01-27 16:51:50 +01:00
qemuxml2argv-cpu-host-kvmclock.xml domain: add implicit USB controller 2012-02-09 16:44:57 -07:00
qemuxml2argv-cpu-host-model-fallback.args qemu: Add support for host CPU modes 2012-01-17 12:22:19 +01:00
qemuxml2argv-cpu-host-model-fallback.xml qemu: Add support for host CPU modes 2012-01-17 12:22:19 +01:00
qemuxml2argv-cpu-host-model-nofallback.xml qemu: Add support for host CPU modes 2012-01-17 12:22:19 +01:00
qemuxml2argv-cpu-host-model.args qemu: Add support for host CPU modes 2012-01-17 12:22:19 +01:00
qemuxml2argv-cpu-host-model.xml qemu: Add support for host CPU modes 2012-01-17 12:22:19 +01:00
qemuxml2argv-cpu-host-passthrough.args qemu: Add support for host CPU modes 2012-01-17 12:22:19 +01:00
qemuxml2argv-cpu-host-passthrough.xml qemu: Add support for host CPU modes 2012-01-17 12:22:19 +01:00
qemuxml2argv-cpu-kvmclock.args qemu: parse and create -cpu ...,-kvmclock 2012-01-27 16:51:50 +01:00
qemuxml2argv-cpu-kvmclock.xml domain: add implicit USB controller 2012-02-09 16:44:57 -07:00
qemuxml2argv-cpu-minimum1.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-cpu-minimum1.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-cpu-minimum2.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-cpu-minimum2.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-cpu-nofallback.xml cpu: Optionally forbid fallback CPU models 2012-01-17 11:39:19 +01:00
qemuxml2argv-cpu-numa1.args qemu: Generate -numa option 2011-11-17 13:47:11 -07:00
qemuxml2argv-cpu-numa1.xml qemu: Generate -numa option 2011-11-17 13:47:11 -07:00
qemuxml2argv-cpu-numa2.args qemu: Generate -numa option 2011-11-17 13:47:11 -07:00
qemuxml2argv-cpu-numa2.xml qemu: Generate -numa option 2011-11-17 13:47:11 -07:00
qemuxml2argv-cpu-qemu-host-passthrough.xml qemu: Add support for host CPU modes 2012-01-17 12:22:19 +01:00
qemuxml2argv-cpu-strict1.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-cpu-strict1.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-cpu-topology1.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-cpu-topology1.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-cpu-topology2.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-cpu-topology2.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-cpu-topology3.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-cpu-topology3.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-cputune.args cputune: New tests for cputune XML 2011-03-29 22:13:46 +08:00
qemuxml2argv-cputune.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-aio.args maint: avoid long lines in more tests 2011-03-03 07:45:31 -07:00
qemuxml2argv-disk-aio.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-cdrom-empty.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-disk-cdrom-empty.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-cdrom.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-disk-cdrom.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-copy_on_read.args qemu: Support copy on read for disk 2012-01-13 10:08:15 +08:00
qemuxml2argv-disk-copy_on_read.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-drive-boot-cdrom.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-disk-drive-boot-cdrom.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-drive-boot-disk.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-disk-drive-boot-disk.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-drive-cache-directsync.args tests: add missing files 2011-09-02 08:42:54 -06:00
qemuxml2argv-disk-drive-cache-directsync.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-drive-cache-unsafe.args Add unsafe cache mode support for disk driver 2011-09-23 08:29:57 -06:00
qemuxml2argv-disk-drive-cache-unsafe.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-drive-cache-v1-none.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-disk-drive-cache-v1-none.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-drive-cache-v1-wb.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-disk-drive-cache-v1-wb.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-drive-cache-v1-wt.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-disk-drive-cache-v1-wt.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-drive-cache-v2-none.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-disk-drive-cache-v2-none.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-drive-cache-v2-wb.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-disk-drive-cache-v2-wb.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-drive-cache-v2-wt.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-disk-drive-cache-v2-wt.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-drive-error-policy-enospace.args qemu: simplify use of HAVE_YAJL 2011-10-26 11:55:39 -06:00
qemuxml2argv-disk-drive-error-policy-enospace.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-drive-error-policy-stop.args qemu: simplify use of HAVE_YAJL 2011-10-26 11:55:39 -06:00
qemuxml2argv-disk-drive-error-policy-stop.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-drive-error-policy-wreport-rignore.args qemu: simplify use of HAVE_YAJL 2011-10-26 11:55:39 -06:00
qemuxml2argv-disk-drive-error-policy-wreport-rignore.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-drive-fat.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-disk-drive-fat.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-drive-fmt-qcow.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-disk-drive-fmt-qcow.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-drive-network-nbd.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-disk-drive-network-nbd.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-drive-network-rbd-auth.args qemu/rbd: improve rbd device specification 2011-11-15 17:06:42 -07:00
qemuxml2argv-disk-drive-network-rbd-auth.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-drive-network-rbd-ceph-env.args qemu/rbd: improve rbd device specification 2011-11-15 17:06:42 -07:00
qemuxml2argv-disk-drive-network-rbd-ceph-env.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-drive-network-rbd.args qemu/rbd: improve rbd device specification 2011-11-15 17:06:42 -07:00
qemuxml2argv-disk-drive-network-rbd.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-drive-network-sheepdog.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-disk-drive-network-sheepdog.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-drive-no-boot.args qemu: Translate boot config into bootindex if possible 2011-06-15 11:29:09 +02:00
qemuxml2argv-disk-drive-no-boot.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-drive-readonly-disk.args tests: fix recent test failures 2011-04-06 10:05:14 -06:00
qemuxml2argv-disk-drive-readonly-disk.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-drive-readonly-no-device.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-disk-drive-readonly-no-device.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-drive-shared.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-disk-drive-shared.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-floppy.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-disk-floppy.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-ioeventfd.args qemu: add new disk device='lun' for bus='virtio' & type='block' 2012-01-09 10:55:53 -05:00
qemuxml2argv-disk-ioeventfd.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-many.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-disk-many.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-order.args qemu: add new disk device='lun' for bus='virtio' & type='block' 2012-01-09 10:55:53 -05:00
qemuxml2argv-disk-order.xml domain: add implicit USB controller 2012-02-09 16:44:57 -07:00
qemuxml2argv-disk-sata-device.args Add AHCI support to qemu driver 2011-10-17 15:44:21 -06:00
qemuxml2argv-disk-sata-device.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-scsi-device-auto.args tests: fix recent test failures 2011-04-06 10:05:14 -06:00
qemuxml2argv-disk-scsi-device-auto.xml domain: add implicit USB controller 2012-02-09 16:44:57 -07:00
qemuxml2argv-disk-scsi-device.args tests: fix recent test failures 2011-04-06 10:05:14 -06:00
qemuxml2argv-disk-scsi-device.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-scsi-virtio-scsi.args tests: Add tests for virtio-scsi and ibmvscsi controllers 2012-02-28 14:28:21 +08:00
qemuxml2argv-disk-scsi-virtio-scsi.xml tests: Add tests for virtio-scsi and ibmvscsi controllers 2012-02-28 14:28:21 +08:00
qemuxml2argv-disk-scsi-vscsi.args tests: Add tests for virtio-scsi and ibmvscsi controllers 2012-02-28 14:28:21 +08:00
qemuxml2argv-disk-scsi-vscsi.xml tests: Add tests for virtio-scsi and ibmvscsi controllers 2012-02-28 14:28:21 +08:00
qemuxml2argv-disk-snapshot.args snapshot: additions to domain xml for disks 2011-09-05 07:03:04 -06:00
qemuxml2argv-disk-snapshot.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-transient.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-usb-device.args tests: fix recent test failures 2011-04-06 10:05:14 -06:00
qemuxml2argv-disk-usb-device.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-disk-usb.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-disk-usb.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-virtio.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-disk-virtio.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-disk-xenvbd.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-disk-xenvbd.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-encrypted-disk.args qemu: add new disk device='lun' for bus='virtio' & type='block' 2012-01-09 10:55:53 -05:00
qemuxml2argv-encrypted-disk.xml domain: add implicit USB controller 2012-02-09 16:44:57 -07:00
qemuxml2argv-event_idx.args qemu: add new disk device='lun' for bus='virtio' & type='block' 2012-01-09 10:55:53 -05:00
qemuxml2argv-event_idx.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-floppy-drive-fat.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-floppy-drive-fat.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-fs9p.args Add new attribute wrpolicy to <driver> element 2012-01-17 15:37:42 -07:00
qemuxml2argv-fs9p.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-graphics-listen-network2.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-graphics-listen-network.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-graphics-sdl-fullscreen.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-graphics-sdl-fullscreen.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-graphics-sdl.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-graphics-sdl.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-graphics-spice-compression.args tests: Test for SPICE compression options 2011-05-31 16:33:36 +02:00
qemuxml2argv-graphics-spice-compression.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-graphics-spice-qxl-vga.args qemu: Support vram for video of qxl type 2011-03-06 22:00:27 +08:00
qemuxml2argv-graphics-spice-qxl-vga.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-graphics-spice-timeout.args tests: really fix QEMU XML-2-ARGV graphics-spice-timeout test 2011-06-01 15:41:24 -06:00
qemuxml2argv-graphics-spice-timeout.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-graphics-spice.args spice: add <clipboard copypaste='yes|no'> option 2011-06-14 17:03:26 -06:00
qemuxml2argv-graphics-spice.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-graphics-vnc-sasl.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-graphics-vnc-sasl.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-graphics-vnc-socket.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-graphics-vnc-socket.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-graphics-vnc-tls.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-graphics-vnc-tls.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-graphics-vnc.args Fix QEMU -vnc arg generation with raw IPv6 addresses 2011-05-24 10:33:53 -04:00
qemuxml2argv-graphics-vnc.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-hostdev-pci-address-device.args tests: fix recent test failures 2011-04-06 10:05:14 -06:00
qemuxml2argv-hostdev-pci-address-device.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-hostdev-pci-address.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-hostdev-pci-address.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-hostdev-usb-address-device.args tests: fix recent test failures 2011-04-06 10:05:14 -06:00
qemuxml2argv-hostdev-usb-address-device.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-hostdev-usb-address.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-hostdev-usb-address.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-hugepages.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-hugepages.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-input-usbmouse-addr.args qemu: Don't append 0 at usb id, so that it is compatible with legacy -usb 2011-09-02 23:39:03 +08:00
qemuxml2argv-input-usbmouse-addr.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-input-usbmouse.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-input-usbmouse.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-input-usbtablet.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-input-usbtablet.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-input-xen.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-input-xen.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-kvmclock.args qemu: parse and create -cpu ...,-kvmclock 2012-01-27 16:51:50 +01:00
qemuxml2argv-kvmclock.xml domain: add implicit USB controller 2012-02-09 16:44:57 -07:00
qemuxml2argv-lease.args Support leases in guest XML and lock manager 2011-06-02 10:54:00 +01:00
qemuxml2argv-lease.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-machine-aliases1.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-machine-aliases1.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-machine-aliases2.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-machine-aliases2.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-memtune.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-memtune.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-metadata.args Allow custom metadata in domain configuration XML 2012-01-24 17:06:34 -07:00
qemuxml2argv-metadata.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-migrate.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-migrate.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-minimal.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-minimal.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-misc-acpi.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-misc-acpi.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-misc-no-reboot.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-misc-no-reboot.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-misc-uuid.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-misc-uuid.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-monitor-json.args qemu: Fix shutdown regression with buggy qemu 2011-09-21 16:53:06 +02:00
qemuxml2argv-monitor-json.xml domain: add implicit USB controller 2012-02-09 16:44:57 -07:00
qemuxml2argv-multifunction-pci-device.args qemu: make PCI multifunction support more manual 2011-10-01 11:48:28 -04:00
qemuxml2argv-multifunction-pci-device.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-net-bandwidth.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-net-client.args docs: Add missed RNG schema for interface 2012-01-17 17:09:47 +08:00
qemuxml2argv-net-client.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-net-eth-ifname.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-net-eth-ifname.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-net-eth-names.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-net-eth-names.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-net-eth.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-net-eth.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-net-hostdev.xml conf: parse/format type='hostdev' network interfaces 2012-03-05 23:24:28 -05:00
qemuxml2argv-net-mcast.args docs: Add missed RNG schema for interface 2012-01-17 17:09:47 +08:00
qemuxml2argv-net-mcast.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-net-server.args docs: Add missed RNG schema for interface 2012-01-17 17:09:47 +08:00
qemuxml2argv-net-server.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-net-user.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-net-user.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-net-virtio-device.args tests: fix recent test failures 2011-04-06 10:05:14 -06:00
qemuxml2argv-net-virtio-device.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-net-virtio-netdev.args tests: fix recent test failures 2011-04-06 10:05:14 -06:00
qemuxml2argv-net-virtio-netdev.xml domain: add implicit USB controller 2012-02-09 16:44:57 -07:00
qemuxml2argv-net-virtio-network-portgroup.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-net-virtio.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-net-virtio.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-no-shutdown.args qemu: Fix shutdown regression with buggy qemu 2011-09-21 16:53:06 +02:00
qemuxml2argv-no-shutdown.xml qemu: Fix shutdown regression with buggy qemu 2011-09-21 16:53:06 +02:00
qemuxml2argv-nographics-vga.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-nographics-vga.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-nographics.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-nographics.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-numatune-memory.args numatune: Add tests for numatune XML 2011-06-20 15:17:43 +08:00
qemuxml2argv-numatune-memory.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-parallel-tcp-chardev.args tests: fix recent test failures 2011-04-06 10:05:14 -06:00
qemuxml2argv-parallel-tcp-chardev.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-parallel-tcp.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-parallel-tcp.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-pci-rom.args qemu: add "romfile" support to specify device boot ROM 2012-01-30 12:30:35 -05:00
qemuxml2argv-pci-rom.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-pseries-basic.args tests: Add qemuxml2argv tests for PPC64 pseries machine 2012-01-13 16:10:43 -07:00
qemuxml2argv-pseries-basic.xml tests: Add qemuxml2argv tests for PPC64 pseries machine 2012-01-13 16:10:43 -07: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 tests: Add qemuxml2argv tests for PPC64 pseries machine 2012-01-13 16:10:43 -07:00
qemuxml2argv-pseries-vio-user-assigned.args qemu: Build command line for the new address format 2012-02-28 14:27:17 +08:00
qemuxml2argv-pseries-vio-user-assigned.xml tests: Add qemuxml2argv tests for PPC64 pseries machine 2012-01-13 16:10:43 -07:00
qemuxml2argv-pseries-vio.args qemu: Build command line for the new address format 2012-02-28 14:27:17 +08:00
qemuxml2argv-pseries-vio.xml tests: Add qemuxml2argv tests for PPC64 pseries machine 2012-01-13 16:10:43 -07:00
qemuxml2argv-qemu-ns-no-env.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-qemu-ns-no-env.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-qemu-ns.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-qemu-ns.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-restore-v1.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-restore-v1.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-restore-v2-fd.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-restore-v2-fd.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-restore-v2.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-restore-v2.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-seclabel-dynamic-baselabel.args schema: rewrite seclabel rng to match code 2011-12-30 10:38:37 +08:00
qemuxml2argv-seclabel-dynamic-baselabel.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-seclabel-dynamic-override.args seclabel: allow a seclabel override on a disk src 2011-12-30 10:57:59 +08:00
qemuxml2argv-seclabel-dynamic-override.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-seclabel-dynamic.args schema: rewrite seclabel rng to match code 2011-12-30 10:38:37 +08:00
qemuxml2argv-seclabel-dynamic.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-seclabel-none.args seclabel: make code and RNG match 2012-02-06 12:04:33 -07:00
qemuxml2argv-seclabel-none.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-seclabel-static-relabel.args schema: rewrite seclabel rng to match code 2011-12-30 10:38:37 +08:00
qemuxml2argv-seclabel-static-relabel.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-seclabel-static.args schema: rewrite seclabel rng to match code 2011-12-30 10:38:37 +08:00
qemuxml2argv-seclabel-static.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-serial-dev-chardev.args tests: fix recent test failures 2011-04-06 10:05:14 -06:00
qemuxml2argv-serial-dev-chardev.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-serial-dev.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-serial-dev.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-serial-file-chardev.args tests: fix recent test failures 2011-04-06 10:05:14 -06:00
qemuxml2argv-serial-file-chardev.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-serial-file.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-serial-file.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-serial-many-chardev.args tests: fix recent test failures 2011-04-06 10:05:14 -06:00
qemuxml2argv-serial-many-chardev.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-serial-many.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-serial-many.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-serial-pty-chardev.args tests: fix recent test failures 2011-04-06 10:05:14 -06:00
qemuxml2argv-serial-pty-chardev.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-serial-pty.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-serial-pty.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-serial-target-port-auto.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-serial-tcp-chardev.args tests: fix recent test failures 2011-04-06 10:05:14 -06:00
qemuxml2argv-serial-tcp-chardev.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-serial-tcp-telnet-chardev.args tests: fix recent test failures 2011-04-06 10:05:14 -06:00
qemuxml2argv-serial-tcp-telnet-chardev.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-serial-tcp-telnet.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-serial-tcp-telnet.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-serial-tcp.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-serial-tcp.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-serial-udp-chardev.args qemu: Fix -chardev udp if parameters are omitted 2011-08-11 15:19:51 +08:00
qemuxml2argv-serial-udp-chardev.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-serial-udp.args qemu: Fix -chardev udp if parameters are omitted 2011-08-11 15:19:51 +08:00
qemuxml2argv-serial-udp.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-serial-unix-chardev.args tests: fix recent test failures 2011-04-06 10:05:14 -06:00
qemuxml2argv-serial-unix-chardev.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-serial-unix.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-serial-unix.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-serial-vc-chardev.args tests: fix recent test failures 2011-04-06 10:05:14 -06:00
qemuxml2argv-serial-vc-chardev.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-serial-vc.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-serial-vc.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-smartcard-controller.args tests: fix recent test failures 2011-04-06 10:05:14 -06:00
qemuxml2argv-smartcard-controller.xml smartcard: add XML support for <smartcard> device 2011-02-03 19:27:43 -07:00
qemuxml2argv-smartcard-host-certificates.args tests: fix recent test failures 2011-04-06 10:05:14 -06:00
qemuxml2argv-smartcard-host-certificates.xml smartcard: add XML support for <smartcard> device 2011-02-03 19:27:43 -07:00
qemuxml2argv-smartcard-host.args tests: fix recent test failures 2011-04-06 10:05:14 -06:00
qemuxml2argv-smartcard-host.xml smartcard: add XML support for <smartcard> device 2011-02-03 19:27:43 -07:00
qemuxml2argv-smartcard-passthrough-spicevmc.args tests: fix recent test failures 2011-04-06 10:05:14 -06:00
qemuxml2argv-smartcard-passthrough-spicevmc.xml smartcard: add spicevmc support 2011-02-04 09:00:39 -07:00
qemuxml2argv-smartcard-passthrough-tcp.args tests: fix recent test failures 2011-04-06 10:05:14 -06:00
qemuxml2argv-smartcard-passthrough-tcp.xml smartcard: add XML support for <smartcard> device 2011-02-03 19:27:43 -07:00
qemuxml2argv-smbios.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-smbios.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-smp.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-smp.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-sound-device.args tests: fix recent test failures 2011-04-06 10:05:14 -06:00
qemuxml2argv-sound-device.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-sound.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-sound.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00
qemuxml2argv-usb1-usb2.args qemu: make PCI multifunction support more manual 2011-10-01 11:48:28 -04:00
qemuxml2argv-usb1-usb2.xml qemu: make PCI multifunction support more manual 2011-10-01 11:48:28 -04: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 Default USB device is on slot 1 function 2 2011-09-05 15:03:27 +08: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 Add USB hub device 2011-09-02 23:38:52 +08: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 qemu: make PCI multifunction support more manual 2011-10-01 11:48:28 -04:00
qemuxml2argv-usb-ich9-ehci-addr.args qemu: make PCI multifunction support more manual 2011-10-01 11:48:28 -04:00
qemuxml2argv-usb-ich9-ehci-addr.xml test: USB controller can have a PCI address child element 2011-09-02 23:22:56 +08: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 test: USB controller can have a PCI address child element 2011-09-02 23:22:56 +08: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 Modify USB port to be defined as a port path 2011-09-02 23:39:03 +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: make PCI multifunction support more manual 2011-10-01 11:48:28 -04:00
qemuxml2argv-virtio-lun.args conf: add rawio attribute to disk element of domain XML 2012-01-31 13:36:23 -05:00
qemuxml2argv-virtio-lun.xml domain: add implicit USB controller 2012-02-09 16:44:57 -07:00
qemuxml2argv-watchdog-device.args tests: fix recent test failures 2011-04-06 10:05:14 -06:00
qemuxml2argv-watchdog-device.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-watchdog-dump.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-watchdog-dump.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-watchdog.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-watchdog.xml conf: Introduce new attribute for device address format 2012-02-28 14:27:11 +08:00