Skip to content

Commit

Permalink
Filter out USB storage from HBA device, since USB storage is already …
Browse files Browse the repository at this point in the history
…managed by udev SM

Signed-off-by: Robin Lee <cheeselee@fedoraproject.org>
  • Loading branch information
Robin Lee authored and MarkSymsCtx committed Mar 3, 2020
1 parent a84675b commit 78946da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/devscan.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
SYSFS_PATH2='/sys/class/scsi_disk'
SYSFS_PATH3='/sys/class/fc_transport'

DRIVER_BLACKLIST = ['^(s|p|)ata_.*', '^ahci$', '^pdc_adma$', '^iscsi_tcp$']
DRIVER_BLACKLIST = ['^(s|p|)ata_.*', '^ahci$', '^pdc_adma$', '^iscsi_tcp$', '^usb-storage$']

INVALID_DEVICE_NAME = ''

Expand Down

0 comments on commit 78946da

Please sign in to comment.