aboutsummaryrefslogtreecommitdiff
path: root/drivers/scsi/device_handler/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2019-05-21treewide: Add SPDX license identifier - Makefile/KconfigThomas Gleixner1-0/+1
Add SPDX license identifiers to all Make/Kconfig files which: - Have no license information of any form These files fall under the project license, GPL v2 only. The resulting SPDX license identifier is: GPL-2.0-only Signed-off-by: Thomas Gleixner <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2015-08-28scsi_dh: integrate into the core SCSI codeChristoph Hellwig1-1/+0
Stop building scsi_dh as a separate module and integrate it fully into the core SCSI code with explicit callouts at bus scan time. For now the callouts are placed at the same point as the old bus notifiers were called, but in the future we will be able to look at ALUA INQUIRY data earlier on. Note that this also means that the device handler modules need to be loaded by the time we scan the bus. The next patches will add support for autoloading device handlers at bus scan time to make sure they are always loaded if they are enabled in the kernel config. Signed-off-by: Christoph Hellwig <[email protected]> Reviewed-by: Martin K. Petersen <[email protected]> Reviewed-by: Hannes Reinecke <[email protected]> Acked-by: Mike Snitzer <[email protected]> Signed-off-by: James Bottomley <[email protected]>
2008-07-26[SCSI] scsi_dh: add generic SPC-3 alua handlerHannes Reinecke1-0/+1
Signed-off-by: Hannes Reinecke <[email protected]> Signed-off-by: Chandra Seetharaman <[email protected]> Signed-off-by: James Bottomley <[email protected]>
2008-06-05[SCSI] scsi_dh: add EMC Clariion device handlerChandra Seetharaman1-0/+1
This adds support for EMC Clariions. This patch has the features that currently exists in mainline and advanced features from Ed's patches. Signed-off-by: Chandra Seetharaman <[email protected]> Signed-off-by: Mike Christie <[email protected]> Signed-off-by: James Bottomley <[email protected]>
2008-06-05[SCSI] scsi_dh: add hp sw device handlerMike Christie1-0/+1
This patch provides the device handler to support the older hp boxes which cannot be upgraded. Signed-off-by: Mike Christie <[email protected]> Signed-off-by: Chandra Seetharaman <[email protected]> Signed-off-by: James Bottomley <[email protected]>
2008-06-05[SCSI] scsi_dh: add lsi rdac device handlerChandra Seetharaman1-0/+1
This patch provides the device handler to support the LSI RDAC SCSI based storage devices. Signed-off-by: Chandra Seetharaman <[email protected]> Signed-off-by: James Bottomley <[email protected]>
2008-06-05[SCSI] scsi_dh: add infrastructure for SCSI Device HandlersChandra Seetharaman1-0/+4
Some of the storage devices (that can be accessed through multiple paths), do need some special handling for 1. Activating the passive path of the storage access. 2. Decode and handle the special sense codes returned by the devices. 3. Handle the I/Os being sent to the passive path, especially during the device probe time. when accessed through multiple paths. As of today this special device handling is done at the dm-multipath layer using dm-handlers. That works well for (1); for (2) to be handled at dm layer, scsi sense information need to be exported from SCSI to dm-layer, which is not very attractive; (3) cannot be done at all at the dm layer. Device handler has been moved to SCSI mainly to handle (2) and (3) properly. Signed-off-by: Chandra Seetharaman <[email protected]> Signed-off-by: Mike Anderson <[email protected]> Signed-off-by: Mike Christie <[email protected]> Signed-off-by: James Bottomley <[email protected]>