Skip to content

Commit

Permalink
scsi_dh: fix randconfig build error
Browse files Browse the repository at this point in the history
It looks like the Kconfig check that was meant to fix this (commit
fe9233f [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: fe9233f
Signed-off-by: Christoph Hellwig <[email protected]>
Tested-by: Mike Snitzer <[email protected]>
Signed-off-by: James Bottomley <[email protected]>
  • Loading branch information
Christoph Hellwig authored and James Bottomley committed Sep 11, 2015
1 parent 537b604 commit 294ab78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/md/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,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.

Expand Down

0 comments on commit 294ab78

Please sign in to comment.