diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2024-08-01 03:44:43 -0400 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2024-08-01 04:32:00 -0400 |
commit | 19c45c00dc6a52f80f27dabbd28de1b770c16a89 (patch) | |
tree | dd4a9ab9e46a5e9dab70b4f08d27469068371f50 /docs | |
parent | b1282f1e352db9947267a6524c6ded9678e82629 (diff) | |
download | qemu-19c45c00dc6a52f80f27dabbd28de1b770c16a89.zip qemu-19c45c00dc6a52f80f27dabbd28de1b770c16a89.tar.gz qemu-19c45c00dc6a52f80f27dabbd28de1b770c16a89.tar.bz2 |
Revert "pcie_sriov: Ensure VF function number does not overflow"
This reverts commit 77718701157f6ca77ea7a57b536fa0a22f676082.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/pcie_sriov.txt | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/docs/pcie_sriov.txt b/docs/pcie_sriov.txt index ab21428..a47aad0 100644 --- a/docs/pcie_sriov.txt +++ b/docs/pcie_sriov.txt @@ -52,11 +52,9 @@ setting up a BAR for a VF. ... /* Add and initialize the SR/IOV capability */ - if (!pcie_sriov_pf_init(d, 0x200, "your_virtual_dev", - vf_devid, initial_vfs, total_vfs, - fun_offset, stride, errp)) { - return; - } + pcie_sriov_pf_init(d, 0x200, "your_virtual_dev", + vf_devid, initial_vfs, total_vfs, + fun_offset, stride); /* Set up individual VF BARs (parameters as for normal BARs) */ pcie_sriov_pf_init_vf_bar( ... ) |