Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi

Pull SCSI fixes from James Bottomley:
"This is a couple of small fixes: one is a potential uninitialised
error variable in the alua code, potentially causing spurious failures
and the other is a problem caused by the conversion of SCSI to
hostwide tags which resulted in the qla1280 driver always failing in
host initialisation"

* tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi:
qla1280: Don't allocate 512kb of host tags
scsi_dh_alua: uninitialized variable in alua_rtpg()

+2 -1
+1
drivers/scsi/device_handler/scsi_dh_alua.c
··· 532 532 return SCSI_DH_DEV_TEMP_BUSY; 533 533 534 534 retry: 535 + err = 0; 535 536 retval = submit_rtpg(sdev, buff, bufflen, &sense_hdr, pg->flags); 536 537 537 538 if (retval) {
+1 -1
drivers/scsi/qla1280.c
··· 4214 4214 .eh_bus_reset_handler = qla1280_eh_bus_reset, 4215 4215 .eh_host_reset_handler = qla1280_eh_adapter_reset, 4216 4216 .bios_param = qla1280_biosparam, 4217 - .can_queue = 0xfffff, 4217 + .can_queue = MAX_OUTSTANDING_COMMANDS, 4218 4218 .this_id = -1, 4219 4219 .sg_tablesize = SG_ALL, 4220 4220 .use_clustering = ENABLE_CLUSTERING,