diff options
author | RanjithML <ranjithml@gmail.com> | 2017-05-22 10:23:10 +0530 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2018-03-27 14:45:36 +0100 |
commit | e832d53c4192c385bf477e61da37ccb7397499b7 (patch) | |
tree | 9c6050196fae856515f68503ecff34cbd8d85f5e | |
parent | 84b6db71db6cc07248e7d036749f06f7133d2169 (diff) | |
download | sos-e832d53c4192c385bf477e61da37ccb7397499b7.tar.gz |
[scsi] scsi address mapping with scsi device name
Collect scsi device name mapping with scsi "H C T L" address.
Currently sg_map collect mapping information about sg device name
and scsi address. "sg_map -x" collect scsi device name mapping with
sg device name and scsi address.
Fixes: #1014
Signed-off-by: RanjithML ranjithml@gmail.com
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/scsi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/scsi.py b/sos/plugins/scsi.py index 23c57883..89968b24 100644 --- a/sos/plugins/scsi.py +++ b/sos/plugins/scsi.py @@ -35,7 +35,7 @@ class Scsi(Plugin, RedHatPlugin, UbuntuPlugin, DebianPlugin): self.add_cmd_output([ "lsscsi", - "sg_map" + "sg_map -x" ]) # vim: set et ts=4 sw=4 : |