mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-11 03:24:58 -06:00
pcie: Add a helper to the SR/IOV API
Convenience function for retrieving the PCIDevice object of the N-th VF. Signed-off-by: Łukasz Gieryk <lukasz.gieryk@linux.intel.com> Reviewed-by: Knut Omang <knuto@ifi.uio.no> Message-Id: <20220217174504.1051716-4-lukasz.maniak@linux.intel.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
2503461691
commit
69387f4915
2 changed files with 15 additions and 1 deletions
|
@ -287,8 +287,16 @@ uint16_t pcie_sriov_vf_number(PCIDevice *dev)
|
||||||
return dev->exp.sriov_vf.vf_number;
|
return dev->exp.sriov_vf.vf_number;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
PCIDevice *pcie_sriov_get_pf(PCIDevice *dev)
|
PCIDevice *pcie_sriov_get_pf(PCIDevice *dev)
|
||||||
{
|
{
|
||||||
return dev->exp.sriov_vf.pf;
|
return dev->exp.sriov_vf.pf;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
PCIDevice *pcie_sriov_get_vf_at_index(PCIDevice *dev, int n)
|
||||||
|
{
|
||||||
|
assert(!pci_is_vf(dev));
|
||||||
|
if (n < dev->exp.sriov_pf.num_vfs) {
|
||||||
|
return dev->exp.sriov_pf.vf[n];
|
||||||
|
}
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
|
@ -68,4 +68,10 @@ uint16_t pcie_sriov_vf_number(PCIDevice *dev);
|
||||||
*/
|
*/
|
||||||
PCIDevice *pcie_sriov_get_pf(PCIDevice *dev);
|
PCIDevice *pcie_sriov_get_pf(PCIDevice *dev);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Get the n-th VF of this physical function - only valid for PF.
|
||||||
|
* Returns NULL if index is invalid
|
||||||
|
*/
|
||||||
|
PCIDevice *pcie_sriov_get_vf_at_index(PCIDevice *dev, int n);
|
||||||
|
|
||||||
#endif /* QEMU_PCIE_SRIOV_H */
|
#endif /* QEMU_PCIE_SRIOV_H */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue