scsi: scsi_transport_sas: select BLK_DEV_BSGLIB
authorArnd Bergmann <arnd@arndb.de>
Tue, 5 Sep 2017 07:49:23 +0000 (09:49 +0200)
committerMartin K. Petersen <martin.petersen@oracle.com>
Tue, 5 Sep 2017 12:24:14 +0000 (08:24 -0400)
Without CONFIG_BLK_DEV_BSGLIB, we get a link error here:

drivers/scsi/scsi_transport_sas.o: In function `sas_bsg_initialize':
scsi_transport_sas.c:(.text+0xcc0): undefined reference to `bsg_setup_queue'
scsi_transport_sas.c:(.text+0xd10): undefined reference to `bsg_setup_queue'
drivers/scsi/scsi_transport_sas.o: In function `sas_smp_dispatch':
scsi_transport_sas.c:(.text+0xe8c): undefined reference to `bsg_job_done'

This modifies the Kconfig 'select' statement accordingly, and matching
what we do for the other two scsi_transport implementations that use
bsglib.

Fixes: 651a01364994 ("scsi: scsi_transport_sas: switch to bsg-lib for SMP passthrough")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/Kconfig

index f4538d7a3016e2b1514df38c9e6e9b48939d6ce7..c470a05c7f477d7d06be3c5b1039013ce2c651fb 100644 (file)
@@ -272,7 +272,7 @@ config SCSI_ISCSI_ATTRS
 config SCSI_SAS_ATTRS
        tristate "SAS Transport Attributes"
        depends on SCSI
-       select BLK_DEV_BSG
+       select BLK_DEV_BSGLIB
        help
          If you wish to export transport-specific information about
          each attached SAS device to sysfs, say Y.