libvirt/tests/qemuxml2argvdata
Laine Stump e9bd5c0e24 Add txmode attribute to interface XML for virtio backend
This is in response to:

   https://bugzilla.redhat.com/show_bug.cgi?id=629662

Explanation

qemu's virtio-net-pci driver allows setting the algorithm used for tx
packets to either "bh" or "timer". This is done by adding ",tx=bh" or
",tx=timer" to the "-device virtio-net-pci" commandline option.

'bh' stands for 'bottom half'; when this is set, packet tx is all done
in an iothread in the bottom half of the driver. (In libvirt, this
option is called the more descriptive "iothread".)

'timer' means that tx work is done in qemu, and if there is more tx
data than can be sent at the present time, a timer is set before qemu
moves on to do other things; when the timer fires, another attempt is
made to send more data. (libvirt retains the name "timer" for this
option.)

The resulting difference, according to the qemu developer who added
the option is:

    bh makes tx more asynchronous and reduces latency, but potentially
    causes more processor bandwidth contention since the cpu doing the
    tx isn't necessarily the cpu where the guest generated the
    packets.

Solution

This patch provides a libvirt domain xml knob to change the option on
the qemu commandline, by adding a new attribute "txmode" to the
<driver> element that can be placed inside any <interface> element in
a domain definition. It's use would be something like this:

    <interface ...>
      ...
      <model type='virtio'/>
      <driver txmode='iothread'/>
      ...
    </interface>

I chose to put this setting as an attribute to <driver> rather than as
a sub-element to <tune> because it is specific to the virtio-net
driver, not something that is generally usable by all network drivers.
(note that this is the same placement as the "driver name=..."
attribute used to choose kernel vs. userland backend for the
virtio-net driver.)

Actually adding the tx=xxx option to the qemu commandline is only done
if the version of qemu being used advertises it in the output of

    qemu -device virtio-net-pci,?

If a particular txmode is requested in the XML, and the option isn't
listed in that help output, an UNSUPPORTED_CONFIG error is logged, and
the domain fails to start.
2011-02-17 11:07:58 -05:00
..
qemu.sh tests: Add tests for CPU selection in qemu driver 2010-12-02 11:13:09 +01:00
qemuxml2argv-balloon-device-auto.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07: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-blkiotune.args qemu: Implement blkio tunable XML configuration and parsing. 2011-02-08 11:43:45 -07:00
qemuxml2argv-blkiotune.xml qemu: Implement blkio tunable XML configuration and parsing. 2011-02-08 11:43:45 -07: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-boot-order.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-boot-order.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-bootloader.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-bootloader.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-channel-guestfwd.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-channel-guestfwd.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 spicevmc: support older -device spicevmc of qemu 0.13.0 2011-02-04 09:17:01 -07:00
qemuxml2argv-channel-spicevmc.args spicevmc: support new qemu chardev 2011-02-03 21:14:50 -07:00
qemuxml2argv-channel-spicevmc.xml spicevmc: support new qemu chardev 2011-02-03 21:14:50 -07:00
qemuxml2argv-channel-virtio-auto.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-channel-virtio-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-channel-virtio.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-channel-virtio.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-console-compat-chardev.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-console-compat-chardev.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-console-virtio.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-console-virtio.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-exact1.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-cpu-exact1.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-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-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-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-disk-aio.args qemu aio: enable support 2011-01-28 09:09:49 -07:00
qemuxml2argv-disk-aio.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-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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-disk-drive-error-policy-enospace.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-disk-drive-error-policy-enospace.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-drive-error-policy-stop.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-disk-drive-error-policy-stop.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-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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-disk-drive-network-rbd.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-disk-drive-network-rbd.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-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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-disk-drive-readonly-disk.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-disk-drive-readonly-disk.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-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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-disk-scsi-device-auto.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-disk-scsi-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-disk-scsi-device.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-disk-scsi-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-device.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-encrypted-disk.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-encrypted-disk.xml Explicitly represent balloon device in XML and handle PCI address 2010-07-21 11:33:11 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-fs9p.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-fs9p.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-graphics-spice.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-graphics-spice.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-graphics-vnc.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-graphics-vnc.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-device.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07: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 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-device.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-hugepages.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-hugepages.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-memtune.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-memtune.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-migrate.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-migrate.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-minimal.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-minimal.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-net-virtio-device.args Add txmode attribute to interface XML for virtio backend 2011-02-17 11:07:58 -05:00
qemuxml2argv-net-virtio-device.xml Add txmode attribute to interface XML for virtio backend 2011-02-17 11:07:58 -05:00
qemuxml2argv-net-virtio-netdev.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-net-virtio-netdev.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-nographics.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-nographics.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-parallel-tcp-chardev.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-parallel-tcp-chardev.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-serial-dev-chardev.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-serial-dev-chardev.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-serial-file-chardev.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-serial-file-chardev.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-serial-many-chardev.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-serial-many-chardev.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-serial-pty-chardev.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-serial-pty-chardev.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-serial-tcp-chardev.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-serial-tcp-chardev.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-serial-tcp-telnet-chardev.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-serial-tcp-telnet-chardev.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-serial-udp-chardev.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-serial-udp-chardev.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-serial-udp.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-serial-udp.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-serial-unix-chardev.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-serial-unix-chardev.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-serial-vc-chardev.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-serial-vc-chardev.xml Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-smartcard-controller.args smartcard: turn on qemu support 2011-02-03 19:32:41 -07: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 smartcard: turn on qemu support 2011-02-03 19:32:41 -07: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 smartcard: turn on qemu support 2011-02-03 19:32:41 -07: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 smartcard: add spicevmc support 2011-02-04 09:00:39 -07:00
qemuxml2argv-smartcard-passthrough-spicevmc.xml smartcard: add spicevmc support 2011-02-04 09:00:39 -07:00
qemuxml2argv-smartcard-passthrough-tcp.args smartcard: turn on qemu support 2011-02-03 19:32:41 -07: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-smp.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07:00
qemuxml2argv-smp.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-device.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00
qemuxml2argv-watchdog-device.args tests: handle backspace-newline pairs in test input files 2011-01-31 11:25:34 -07: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 Add VIR_DIV_UP to divide memory or storage request sizes with round up 2011-01-29 00:42:10 +01:00