On 12/18/2013 08:24 AM, bugzilla-daemon@xxxxxxxxxxxxxxxxxxx wrote: > https://bugzilla.kernel.org/show_bug.cgi?id=67091 > > Alan <alan@xxxxxxxxxxxxxxxxxxx> changed: > > What |Removed |Added > ---------------------------------------------------------------------------- > CC| |alan@xxxxxxxxxxxxxxxxxxx > Component|Other |Other > Assignee|drivers_other@kernel-bugs.o |scsi_drivers-other@kernel-b > |sdl.org |ugs.osdl.org > Product|Drivers |SCSI Drivers > Jay, I thought we fixed that bug. I am not seeing a patch though. I think we wanted to be checking against the sc passed in. Patch is compile tested only. diff --git a/drivers/scsi/be2iscsi/be_main.c b/drivers/scsi/be2iscsi/be_main.c index 1f37505..5642a9b 100644 --- a/drivers/scsi/be2iscsi/be_main.c +++ b/drivers/scsi/be2iscsi/be_main.c @@ -325,7 +325,7 @@ static int beiscsi_eh_device_reset(struct scsi_cmnd *sc) if (!abrt_task->sc || abrt_task->state == ISCSI_TASK_FREE) continue; - if (abrt_task->sc->device->lun != abrt_task->sc->device->lun) + if (sc->device->lun != abrt_task->sc->device->lun) continue; /* Invalidate WRB Posted for this Task */ -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html