From: Jakob Meng <[email protected]> The documentation in vswitchd/vswitch.xml for status columns has been updated to reflect recent and not so recent changes to dpdk netdevs. For example, status columns pci-vendor_id and pci-device_id have been replaced with bus_info in order to sync changes from [0].
[0] https://github.com/openvswitch/ovs/commit/a77c7796f23a76190b61e2109a009df980253b0f Signed-off-by: Jakob Meng <[email protected]> --- vswitchd/vswitch.xml | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/vswitchd/vswitch.xml b/vswitchd/vswitch.xml index cfcde34ff..aa15e9d9a 100644 --- a/vswitchd/vswitch.xml +++ b/vswitchd/vswitch.xml @@ -3797,12 +3797,28 @@ ovs-vsctl add-port br0 p0 -- set Interface p0 type=patch options:peer=p1 \ Interface description string. </column> - <column name="status" key="pci-vendor_id"> - Vendor ID of PCI device. + <column name="status" key="bus_info"> + Bus name and bus info such as Vendor ID and Device ID of PCI + device. </column> - <column name="status" key="pci-device_id"> - Device ID of PCI device. + <column name="status" key="dpdk-vf-mac"> + Ethernet address set for this VF interface. Only reported for dpdk + VF representors. + </column> + + <column name="status" key="rx_steering"> + Hardware Rx queue steering policy in use. + </column> + + <column name="status" key="rx_steering_queue"> + ID of rx steering queue. Only reported if <code>rx-steering</code> + is supported by hardware. + </column> + + <column name="status" key="rss_queues"> + IDs of rss queues. Only reported if <code>rx-steering</code> is + supported by hardware. </column> </group> -- 2.39.2 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
