[SCSI] be2iscsi: fix bad if expression
authorMike Christie <[email protected]>
Thu, 19 Dec 2013 07:16:21 +0000 (01:16 -0600)
committerJames Bottomley <[email protected]>
Mon, 10 Mar 2014 08:44:31 +0000 (12:44 +0400)
https://bugzilla.kernel.org/show_bug.cgi?id=67091

Cc: Jayamohan Kallickal <[email protected]>
Signed-off-by: James Bottomley <[email protected]>
drivers/scsi/be2iscsi/be_main.c

index 1f375051483a428d24c63c206fb24a40cda06211..5642a9b250c2fe11201510460563ec576c70461c 100644 (file)
@@ -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 */