Commit 6de61f9d2491970a204da9111e2d25e0d9f284d6

Authored by Roel Kluin
Committed by Linus Torvalds
1 parent 87da32356b

bfa: wrong fcport H2I message tested in bfa_fcport_isr()

It appears that the wrong fcport H2I message was tested

Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Acked-by: Jing Huang <huangj@Brocade.COM>
Cc: James Bottomley <James.Bottomley@HansenPartnership.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

drivers/scsi/bfa/bfa_fcport.c
... ... @@ -1310,7 +1310,7 @@
1310 1310 break;
1311 1311  
1312 1312 case BFI_FCPORT_I2H_DISABLE_RSP:
1313   - if (fcport->msgtag == i2hmsg.penable_rsp->msgtag)
  1313 + if (fcport->msgtag == i2hmsg.pdisable_rsp->msgtag)
1314 1314 bfa_sm_send_event(fcport, BFA_FCPORT_SM_FWRSP);
1315 1315 break;
1316 1316