Searched refs:max_scsi_report_luns (Results 1 - 1 of 1) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/
H A Dscsi_scan.c106 * max_scsi_report_luns: the maximum number of LUNS that will be
112 static unsigned int max_scsi_report_luns = 511; variable
114 module_param_named(max_report_luns, max_scsi_report_luns, uint, S_IRUGO|S_IWUSR);
1313 length = (max_scsi_report_luns + 1) * sizeof(struct scsi_lun);
1385 if (num_luns > max_scsi_report_luns) {
1386 printk(KERN_WARNING "scsi: On %s only %d (max_scsi_report_luns)"
1388 " max_scsi_report_luns.\n", devname,
1389 max_scsi_report_luns, num_luns);
1390 num_luns = max_scsi_report_luns;

Completed in 105 milliseconds