diff options
author | Aaron Conole <aconole@redhat.com> | 2017-03-25 08:17:17 -0400 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2017-03-27 17:32:40 +0100 |
commit | a5cf3f138e7d57c9862287fbe0a9baf4cae0d472 (patch) | |
tree | 28c516537d26555eeb226545b4e2a138cb106a2d | |
parent | ddb612efc3df7d6b0dddf7ea4fdfcb3133bec701 (diff) | |
download | sos-a5cf3f138e7d57c9862287fbe0a9baf4cae0d472.tar.gz |
[openvswitch] additional methods for status fetch
dpdk_nic_bind was renamed by the DPDK project to dpdk_devbind, which
means we need to test for either.
Additionally, driverctl is used in rhel systems to provide udev based
persistent overrides, so capturing its output is helpful as well.
Signed-off-by: Aaron Conole <aconole@redhat.com>
-rw-r--r-- | sos/plugins/openvswitch.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sos/plugins/openvswitch.py b/sos/plugins/openvswitch.py index 177da89f..c9946e3c 100644 --- a/sos/plugins/openvswitch.py +++ b/sos/plugins/openvswitch.py @@ -45,6 +45,9 @@ class OpenVSwitch(Plugin): "ls -laZ /var/run/openvswitch", # List devices and their drivers "dpdk_nic_bind --status", + "dpdk_devbind.py --status", + "driverctl list-devices", + "driverctl list-overrides", # Capture a list of all bond devices "ovs-appctl bond/list", # Capture more details from bond devices |