[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v4 02/13] pcie: Introduce pcie_sriov_num_vfs
From: |
Akihiko Odaki |
Subject: |
[PATCH v4 02/13] pcie: Introduce pcie_sriov_num_vfs |
Date: |
Thu, 26 Jan 2023 20:19:32 +0900 |
igb can use this function to change its behavior depending on the
number of virtual functions currently enabled.
Signed-off-by: Gal Hammer <gal.hammer@sap.com>
Signed-off-by: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
hw/pci/pcie_sriov.c | 5 +++++
include/hw/pci/pcie_sriov.h | 3 +++
2 files changed, 8 insertions(+)
diff --git a/hw/pci/pcie_sriov.c b/hw/pci/pcie_sriov.c
index f0bd72e069..aa5a757b11 100644
--- a/hw/pci/pcie_sriov.c
+++ b/hw/pci/pcie_sriov.c
@@ -300,3 +300,8 @@ PCIDevice *pcie_sriov_get_vf_at_index(PCIDevice *dev, int n)
}
return NULL;
}
+
+uint16_t pcie_sriov_num_vfs(PCIDevice *dev)
+{
+ return dev->exp.sriov_pf.num_vfs;
+}
diff --git a/include/hw/pci/pcie_sriov.h b/include/hw/pci/pcie_sriov.h
index 96cc743309..095fb0c9ed 100644
--- a/include/hw/pci/pcie_sriov.h
+++ b/include/hw/pci/pcie_sriov.h
@@ -76,4 +76,7 @@ PCIDevice *pcie_sriov_get_pf(PCIDevice *dev);
*/
PCIDevice *pcie_sriov_get_vf_at_index(PCIDevice *dev, int n);
+/* Returns the current number of virtual functions. */
+uint16_t pcie_sriov_num_vfs(PCIDevice *dev);
+
#endif /* QEMU_PCIE_SRIOV_H */
--
2.39.0
- [PATCH v4 00/13] Introduce igb, Akihiko Odaki, 2023/01/26
- [PATCH v4 01/13] hw/net/net_tx_pkt: Introduce net_tx_pkt_get_eth_hdr, Akihiko Odaki, 2023/01/26
- [PATCH v4 02/13] pcie: Introduce pcie_sriov_num_vfs,
Akihiko Odaki <=
- [PATCH v4 03/13] e1000: Split header files, Akihiko Odaki, 2023/01/26
- [PATCH v4 04/13] igb: Copy e1000e code, Akihiko Odaki, 2023/01/26
- [PATCH v4 05/13] igb: Rename identifiers, Akihiko Odaki, 2023/01/26
- [PATCH v4 06/13] igb: Build igb, Akihiko Odaki, 2023/01/26
- [PATCH v4 07/13] igb: Transform to 82576 implementation, Akihiko Odaki, 2023/01/26
- [PATCH v4 08/13] tests/qtest/e1000e-test: Fabricate ethernet header, Akihiko Odaki, 2023/01/26
- [PATCH v4 09/13] tests/qtest/libqos/e1000e: Export macreg functions, Akihiko Odaki, 2023/01/26
- [PATCH v4 10/13] tests/qtest/libqos/igb: Copy e1000e code, Akihiko Odaki, 2023/01/26
- [PATCH v4 11/13] tests/qtest/libqos/igb: Transform to igb tests, Akihiko Odaki, 2023/01/26