]> xenbits.xensource.com Git - people/dariof/libvirt.git/commit
nodedev: add iommuGroup to node device object
authorLaine Stump <laine@laine.org>
Sun, 23 Jun 2013 18:01:00 +0000 (14:01 -0400)
committerLaine Stump <laine@laine.org>
Wed, 26 Jun 2013 18:10:56 +0000 (14:10 -0400)
commit8807b28559725a882eb80dae491b6a836cf78119
tree5608907aff2a6c7f06068a742b70acad3b33abb9
parent72c029d88365b051c59c62af4ab44aea29c815e9
nodedev: add iommuGroup to node device object

This includes adding it to the nodedev parser and formatter, docs, and
test.

An example of the new iommuGroup element that is a part of the output
from "virsh nodedev-dumpxml" (virNodeDeviceGetXMLDesc()):

  <device>
    <name>pci_0000_02_00_1</name>
    <capability type='pci'>
    ...
      <iommuGroup number='12'>
        <address domain='0x0000' bus='0x02' slot='0x00' function='0x0'/>
        <address domain='0x0000' bus='0x02' slot='0x00' function='0x1'/>
      </iommuGroup>
    </capability>
  </device>
docs/formatnode.html.in
docs/schemas/nodedev.rng
src/conf/node_device_conf.c
src/conf/node_device_conf.h
src/node_device/node_device_udev.c
tests/nodedevschemadata/pci_8086_10c9_sriov_pf.xml [new file with mode: 0644]
tests/nodedevxml2xmltest.c