The patch titled qla1280 bus reset typo has been removed from the -mm tree. Its filename was qla1280-bus-reset-typo.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: qla1280 bus reset typo From: Jes Sorensen <jes@xxxxxxx> Fix typo in check of return value of qla1280_bus_reset() which would result in an adapter reset in addition to the bus reset. Signed-off-by: Jes Sorensen <jes@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/scsi/qla1280.c | 7 +++---- 1 files changed, 3 insertions(+), 4 deletions(-) diff -puN drivers/scsi/qla1280.c~qla1280-bus-reset-typo drivers/scsi/qla1280.c --- a/drivers/scsi/qla1280.c~qla1280-bus-reset-typo +++ a/drivers/scsi/qla1280.c @@ -931,11 +931,10 @@ qla1280_error_action(struct scsi_cmnd *c case BUS_RESET: if (qla1280_verbose) - printk(KERN_INFO "qla1280(%ld:%d): Issuing BUS " - "DEVICE RESET\n", ha->host_no, bus); - if (qla1280_bus_reset(ha, bus == 0)) + printk(KERN_INFO "qla1280(%ld:%d): Issued bus " + "reset.\n", ha->host_no, bus); + if (qla1280_bus_reset(ha, bus) == 0) result = SUCCESS; - break; case ADAPTER_RESET: _ Patches currently in -mm which might be from jes@xxxxxxx are origin.patch git-scsi-rc-fixes.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html