diff options
author | Aaron Conole <aconole@redhat.com> | 2020-05-07 10:44:31 -0400 |
---|---|---|
committer | Jake Hunsaker <jhunsake@redhat.com> | 2020-05-26 14:16:58 -0400 |
commit | 27ef2569734f3d99eb7bfcdee721b364beaa8114 (patch) | |
tree | c7830b71289e3bd38b7e647eb933af1c781e967a | |
parent | bc0c02453e1746083173301857edfc7fdccb8a9c (diff) | |
download | sos-27ef2569734f3d99eb7bfcdee721b364beaa8114.tar.gz |
[openvswitch] List important dpdk related directories
Sometimes the permissions or selinux attributes are modified in an
unexpected way.
Signed-off-by: Aaron Conole <aconole@redhat.com>
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
-rw-r--r-- | sos/report/plugins/openvswitch.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sos/report/plugins/openvswitch.py b/sos/report/plugins/openvswitch.py index 76bbf8ed..4792371d 100644 --- a/sos/report/plugins/openvswitch.py +++ b/sos/report/plugins/openvswitch.py @@ -53,8 +53,11 @@ class OpenVSwitch(Plugin): "ovs-vsctl -t 5 show", # Gather the database. "ovsdb-client -f list dump", - # List the contents of runtime directory + # List the contents of important runtime directories "ls -laZ /run/openvswitch", + "ls -laZ /dev/hugepages/", + "ls -laZ /dev/vfio", + "ls -laZ /var/lib/vhost_sockets", # List devices and their drivers "dpdk_nic_bind --status", "dpdk_devbind.py --status", |