mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
086b91d052
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 <hch@lst.de> Reviewed-by: Martin K. Petersen <martin.petersen@oracle.com> Reviewed-by: Hannes Reinecke <hare@suse.de> Acked-by: Mike Snitzer <snitzer@redhat.com> Signed-off-by: James Bottomley <JBottomley@Odin.com>
7 lines
206 B
Makefile
7 lines
206 B
Makefile
#
|
|
# SCSI Device Handler
|
|
#
|
|
obj-$(CONFIG_SCSI_DH_RDAC) += scsi_dh_rdac.o
|
|
obj-$(CONFIG_SCSI_DH_HP_SW) += scsi_dh_hp_sw.o
|
|
obj-$(CONFIG_SCSI_DH_EMC) += scsi_dh_emc.o
|
|
obj-$(CONFIG_SCSI_DH_ALUA) += scsi_dh_alua.o
|