Searched hist:b840c3627b6f4f856b333a14a72f8ed86da2f86c (Results 1 – 1 of 1) sorted by relevance
/linux/drivers/scsi/mpt3sas/ |
H A D | Kconfig | diff 3ddda3e4c82dea58933bde8d0f6ef34470c360cb Wed Dec 02 22:36:58 CET 2015 James Bottomley <James.Bottomley@HansenPartnership.com> mpt3sas: fix Kconfig dependency problem for mpt2sas back compatibility
The non-PCI builds of the O day test project are failing:
On Thu, 2015-12-03 at 05:02 +0800, kbuild test robot wrote: > warning: (SCSI_MPT2SAS) selects SCSI_MPT3SAS which has unmet direct > dependencies (SCSI_LOWLEVEL && PCI && SCSI)
The problem is that select and depend don't interact because Kconfig doesn't have a SAT solver, so depend picks up dependencies and select does onward selects, but select doesn't pick up dependencies. To fix this, we need to add the correct dependencies to the MPT2SAS option like this.
Reported-by: kbuild test robot <fengguang.wu@intel.com> Fixes: b840c3627b6f4f856b333a14a72f8ed86da2f86c Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com> diff b840c3627b6f4f856b333a14a72f8ed86da2f86c Tue Dec 01 02:36:08 CET 2015 Martin K. Petersen <martin.petersen@oracle.com> mpt3sas: Add dummy Kconfig option for backwards compatibility
The mpt2sas driver was recently folded into mpt3sas to reduce code duplication.
To avoid problems for people that only have CONFIG_SCSI_MPT2SAS in their .config we introduce a dummy option that will select MPT3SAS if MPT2SAS was previously enabled.
This is a temporary measure and we will deprecate this config option in 4.6.
Reported-by: Peter Zijlstra <peterz@infradead.org> Acked-by: Christoph Hellwig <hch@lst.de> Acked-by: James Bottomley <James.Bottomley@hansenpartnership.com> CC: Ingo Molnar <mingo@kernel.org> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
|