diff options
author | Peter Jones <pjones@redhat.com> | 2011-01-06 15:38:24 -0500 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2011-01-24 13:02:09 -0500 |
commit | 940d7faa4818f386fcdf1b7266ec7b62bf07a7d0 (patch) | |
tree | 3a5acb8d4a9b0d6806724e71e6c7f9e23d39bfad /include/scsi/scsi_device.h | |
parent | 38a039be2e7bda32517642ecfce54c9317292a9c (diff) |
[SCSI] scsi_dh: Use scsi_devinfo functions to do matching of device_handler tables.
Previously we were using strncmp in order to avoid having to include
whitespace in the devlist, but this means "HSV1000" matches a device
list entry that says "HSV100", which is wrong. This patch changes
scsi_dh.c to use scsi_devinfo's matching functions instead, since they
handle these cases correctly.
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'include/scsi/scsi_device.h')
-rw-r--r-- | include/scsi/scsi_device.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/scsi/scsi_device.h b/include/scsi/scsi_device.h index 85867dcde335..f171c65dc5a8 100644 --- a/include/scsi/scsi_device.h +++ b/include/scsi/scsi_device.h | |||
@@ -184,6 +184,7 @@ typedef void (*activate_complete)(void *, int); | |||
184 | struct scsi_device_handler { | 184 | struct scsi_device_handler { |
185 | /* Used by the infrastructure */ | 185 | /* Used by the infrastructure */ |
186 | struct list_head list; /* list of scsi_device_handlers */ | 186 | struct list_head list; /* list of scsi_device_handlers */ |
187 | int idx; | ||
187 | 188 | ||
188 | /* Filled by the hardware handler */ | 189 | /* Filled by the hardware handler */ |
189 | struct module *module; | 190 | struct module *module; |