Displaying 2 results from an estimated 2 matches for "2929678720f4".
2013 Aug 27
3
SR-IOV Pool Availability
If I'm using the SR-IOV Pool assignment method (from
http://wiki.libvirt.org/page/Networking#Assignment_from_a_pool_of_SRIOV_VFs_in_a_libvirt_.3Cnetwork.3E_definition
), how would I check how many virtual functions are already in use?
Is there a method other then looping through all the active guests and
determining if they're using the SR-IOV interface?
2013 Sep 05
0
Re: SR-IOV Pool Availability
...Fs_in_a_libvirt_.3Cnetwork.3E_definition
> ), how would I check how many virtual functions are already in use?
Hi Brian
Hope the following can help you.
[root@sriov2 images]# virsh net-dumpxml hostnet
<network>
<name>hostnet</name>
<uuid>6b49be3c-bb91-c16d-b475-2929678720f4</uuid>
<forward mode='hostdev' managed='yes'>
<pf dev='eth2'/>
</forward>
</network>
[root@sriov2 images]# virsh start r6
Domain r6 started
[root@sriov2 images]# virsh attach-device r6 vfpool.xml
Device attached successfully
[root@...