]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
scsi_dh: fix randconfig build error
authorChristoph Hellwig <hch@lst.de>
Wed, 9 Sep 2015 16:04:18 +0000 (18:04 +0200)
committerZefan Li <lizefan@huawei.com>
Wed, 27 Apr 2016 10:55:18 +0000 (18:55 +0800)
commit 294ab783ad98066b87296db1311c7ba2a60206a5 upstream.

It looks like the Kconfig check that was meant to fix this (commit
fe9233fb6914a0eb20166c967e3020f7f0fba2c9 [SCSI] scsi_dh: fix kconfig related
build errors) was actually reversed, but no-one noticed until the new set of
patches which separated DM and SCSI_DH).

Fixes: fe9233fb6914a0eb20166c967e3020f7f0fba2c9
Signed-off-by: Christoph Hellwig <hch@lst.de>
Tested-by: Mike Snitzer <snitzer@redhat.com>
Signed-off-by: James Bottomley <JBottomley@Odin.com>
Signed-off-by: Zefan Li <lizefan@huawei.com>
drivers/md/Kconfig

index da4dc255bc54b572770af31f43ceebad837d3464..518703048fa1fd756f5eb8651a75f8b2e7f29c27 100644 (file)
@@ -330,7 +330,7 @@ config DM_MULTIPATH
        # of SCSI_DH if the latter isn't defined but if
        # it is, DM_MULTIPATH must depend on it.  We get a build
        # error if SCSI_DH=m and DM_MULTIPATH=y
-       depends on SCSI_DH || !SCSI_DH
+       depends on !SCSI_DH || SCSI
        ---help---
          Allow volume managers to support multipath hardware.