* scan_scsis limits LUNs to max_scsi_luns... is this what we want?
@ 2001-05-03 23:54 James Washer
0 siblings, 0 replies; only message in thread
From: James Washer @ 2001-05-03 23:54 UTC (permalink / raw)
To: linux-kernel
In the routine scan_scsis(), The following code would appear to limit
the number of luns a given apapter can use to max_scsi_luns, as opposed
to the limit the low-level driver passed in the Scsi_Host structure.
Is that the behaviour we want? or should the '<' become a '>' in the ternary,
thereby scanning the greater of the passed max_lun or the system max_scsi_luns.
It seems to me that if a low level driver passes a large number of luns,
the midlayer should accept that value.
Of course, the use of the CONFIG_SCSI_MULTI_LUN #define would lead me to
believe that the kernel does indeed want to limit the number of luns probed
to the lesser of the two values... but why??
max_dev_lun = (max_scsi_luns < shpnt->max_lun ?
max_scsi_luns : shpnt->max_lun);
sparse_lun = 0;
for (lun = 0; lun < max_dev_lun; ++lun) {
if (!scan_scsis_single(channel, order_dev, lun, &max_dev_lun,
&sparse_lun, &SDpnt, shpnt,
scsi_result)
&& !sparse_lun) break;
}
--
+==============================================================+
| James W Washer IBM NUMA-Q Service KG7HH(US) M0BOR(UK) |
| |
| 15450 SW Koll Pkwy |
| MS RHE2-501 |
| Beaverton, OR 97006 |
| |
| 1-800-854-9969 1-503-578-3171(direct line) |
| washer@us.ibm.com |
+==============================================================+
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2001-05-03 23:54 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-05-03 23:54 scan_scsis limits LUNs to max_scsi_luns... is this what we want? James Washer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®